forked from msdale/whats-out-there
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 900 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": "hacker-news-clone",
"version": "1.0.0",
"description": "",
"main": "server.js",
"engines": {
"npm": ">=6.0.0",
"node": ">=12.0.0"
},
"scripts": {
"test": "jest",
"start": "node server.js",
"startover": "node server.js startover",
"startseed": "node server.js startseed",
"watch": "nodemon server.js",
"seed": "node seeds/index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^4.0.1",
"bulma": "^0.9.3",
"connect-session-sequelize": "^6.1.1",
"dotenv": "^8.6.0",
"dtl-js": "^1.1.1",
"express": "^4.17.2",
"express-handlebars": "^3.1.0",
"express-session": "^1.17.2",
"handlebars": "^4.7.7",
"mysql2": "^2.3.3",
"node-csv": "^0.1.2",
"nodemon": "^2.0.15",
"realistic-structured-clone": "^2.0.3",
"sequelize": "^5.22.5"
}
}