-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.16 KB
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
{
"name": "project-2---tbc",
"version": "1.0.0",
"description": "Monash Bootcamp Project 2",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"seed": "node seeds/seed.js",
"devStart": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vvnnzar/Project-2---TBC.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/vvnnzar/Project-2---TBC/issues"
},
"homepage": "https://github.com/vvnnzar/Project-2---TBC#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"client-sessions": "^0.8.0",
"connect-session-sequelize": "^7.1.1",
"csurf": "^1.11.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-handlebars": "^5.3.2",
"express-session": "^1.17.2",
"jsonwebtoken": "^8.5.1",
"mysql": "^2.18.1",
"mysql2": "^2.2.5",
"njwt": "^1.1.0",
"pg": "^8.6.0",
"sequelize": "^6.6.2"
},
"devDependencies": {
"nodemon": "^2.0.7"
}
}