-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.13 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
{
"name": "cars-api",
"version": "1.0.0",
"description": "A simple API created to exercise some principles on NodeJS API creation",
"main": "src/index.ts",
"scripts": {
"build": "tsc",
"start": "ts-node-dev --respawn src/index.ts",
"test": "jest --watchAll --coverage --runInBand",
"test:list": "jest --verbose --silent --runInBand"
},
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.17.1",
"joi": "^17.2.1",
"swagger-ui-express": "^4.1.4"
},
"devDependencies": {
"@types/express": "^4.17.7",
"@types/jest": "^26.0.10",
"@types/joi": "^14.3.4",
"@types/node": "^14.6.2",
"@types/supertest": "^2.0.10",
"@types/swagger-ui-express": "^4.1.2",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.2.1",
"eslint-plugin-import": "^2.22.0",
"jest": "^26.4.2",
"prettier": "^2.1.1",
"supertest": "^4.0.2",
"ts-jest": "^26.3.0",
"ts-node-dev": "^1.0.0-pre.61",
"typescript": "^4.0.2"
}
}