-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 927 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
{
"name": "nuesa-backend",
"version": "1.0.0",
"main": "server.js",
"scripts": {
"test": "echo 'Error: no test specified' && exit 1",
"start": "ts-node server.ts",
"dev": "ts-node-dev server.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/jsonwebtoken": "^9.0.4",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.0",
"open": "^9.1.0",
"reflect-metadata": "^0.1.13",
"typedi": "^0.10.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.1",
"@types/cors": "^2.8.15",
"@types/express": "^4.17.20",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=12.0.0"
}
}