-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 980 Bytes
/
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
{
"name": "quotes-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:dev": "nodemon src/index.ts --watch src",
"start:prod": "node dist/index.js",
"build:prod": "tsc -p ./tsconfig.prod.json",
"test": "jest --forceExit"
},
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.18.2",
"helmet": "^6.0.0",
"hpp": "^0.2.3",
"morgan": "^1.10.0",
"node-fetch": "^3.2.10",
"winston": "^3.8.2",
"zod": "^3.19.1"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.14",
"@types/helmet": "^4.0.0",
"@types/hpp": "^0.2.2",
"@types/jest": "^29.2.0",
"@types/morgan": "^1.9.3",
"@types/node-fetch": "^2.6.2",
"@types/supertest": "^2.0.12",
"jest": "^29.2.2",
"nodemon": "^2.0.20",
"supertest": "^6.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}