-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 758 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 758 Bytes
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
{
"name": "nodejs-template",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "node build/index.js",
"dev": "nodemon src/index.ts",
"build": "tsc -p ."
},
"dependencies": {
"@types/cors": "^2.8.12",
"argon2": "^0.28.7",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv-safe": "^8.2.0",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.5.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/dotenv-safe": "^8.1.2",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}