-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.05 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
{
"name": "no_mongoose",
"version": "1.0.0",
"description": "",
"scripts": {
"ts:watch": "tsc -w",
"ts:build": "tsc",
"serve": "nodemon dist/server.js",
"watch": "concurrently \"npm run ts:watch\" \"npm run serve\"",
"build": "npm run ts:build",
"prod:serve": "node dist/server.js",
"start": "npm run build && npm run prod:serve",
"dev": "nodemon -w src -e tsx,ts -x ts-node -T --dir src ./server"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/argon2": "^0.15.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.7",
"@types/express": "^4.17.7",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^14.0.27",
"argon2": "^0.26.2",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.6.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"devDependencies": {
"concurrently": "^5.3.0",
"nodemon": "^2.0.4"
}
}