-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.63 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "car-shop",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"dev": "tsnd src/index.ts",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"test": "mocha -r ts-node/register tests/unit/**/*.test.ts --exit -t 60000",
"test:coverage": "nyc npm run test:dev"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@jest/test-sequencer": "27.5.1",
"@types/chai": "4.3.0",
"@types/chai-http": "4.2.0",
"@types/express": "4.17.13",
"@types/jest": "27.4.1",
"@types/mocha": "9.1.0",
"@types/node": "16.11.7",
"@types/sinon": "10.0.11",
"@typescript-eslint/eslint-plugin": "5.3.1",
"@typescript-eslint/parser": "5.3.1",
"@types/supertest": "2.0.11",
"@types/chai-as-promised": "7.1.5",
"@types/joi": "17.2.3",
"chai": "4.3.6",
"chai-http": "4.3.0",
"eslint": "7.32.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "15.0.0",
"eslint-plugin-editorconfig": "3.2.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-mocha": "9.0.0",
"eslint-plugin-sonarjs": "0.10.0",
"jest": "27.5.1",
"mocha": "9.2.1",
"nyc": "15.1.0",
"sinon": "13.0.1",
"ts-node": "10.4.0",
"ts-node-dev": "1.1.8",
"typescript": "4.4.3",
"util": "0.12.4",
"chai-as-promised": "7.1.1",
"supertest": "6.2.2",
"ts-jest": "27.1.3",
"dotenv": "16.0.0"
},
"dependencies": {
"express": "4.17.1",
"express-async-errors": "3.1.1",
"mongoose": "6.1.8",
"zod": "3.11.6",
"joi": "17.6.0"
}
}