-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 915 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
37
{
"name": "software-engineering-node",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node build/server.js",
"build": "tsc --project ./",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "npm run build",
"dev": "nodemon server.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.25.0",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.1",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"express-session": "^1.17.2",
"mongoose": "^6.2.1",
"typescript": "^4.5.4"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/jest": "^27.4.0",
"@types/node": "^16.11.21",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}