-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.14 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
{
"name": "lets-build-it-back",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "nodemon --exec ts-node ./src/index.ts",
"start2": "nodemon ./dist/src/index.js",
"stop": "sudo kill -9 $(sudo lsof -t -i:3000)",
"watch": "tsc --watch",
"update": "ncu -u",
"update:force": "ncu -u && npm i"
},
"author": "Mor Bargig",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.11",
"@types/node": "^14.14.35",
"bcrypt": "^5.0.1",
"jsonwebtoken": "^8.5.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.3",
"@hapi/joi": "^17.1.1",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"env-var": "^7.0.0",
"express": "^4.17.1",
"helmet": "^4.4.1",
"joi": "^17.4.0",
"mongoose": "^5.12.2"
},
"devDependencies": {
"@babel/preset-env": "^7.13.10",
"@types/bcrypt": "^3.0.0",
"@types/lodash": "^4.14.168",
"@types/mongoose": "^5.10.4",
"@types/express": "^4.17.6",
"@types/hapi__joi": "^17.1.3",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"typescript": "^4.2.3",
"nodemon": "^2.0.7"
}
}