-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.1 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
{
"name": "bookreview-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch-node": "nodemon -q dist/server.js",
"watch-ts": "tsc -w",
"start": "node dist/server.js",
"dev": "concurrently \"npm run watch-ts\" \"npm run watch-node\"",
"build": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"knex": "^2.4.2",
"lodash": "^4.17.21",
"node-fetch": "^2.6.9",
"nodemailer": "^6.6.1",
"pg": "^8.9.0",
"winston": "^3.8.2",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^18.13.0",
"@types/node-fetch": "^2.6.2",
"@types/nodemailer": "^6.4.7",
"concurrently": "^7.6.0",
"nodemon": "^2.0.20",
"typescript": "^4.9.5"
}
}