-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.14 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "jubilant-robot",
"version": "0.0.1",
"description": "A CMS for a blog written in Express.js",
"main": "server.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"watch": "nodemon server.js",
"seed": "node seeds/seeds.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mjamesd/jubilant-robot.git"
},
"keywords": [
"cms",
"mvc",
"node",
"express",
"javascript",
"mysql",
"sequelize",
"authentication",
"blog",
"full stack"
],
"author": "Mark Drummond",
"license": "ISC",
"bugs": {
"url": "https://github.com/mjamesd/jubilant-robot/issues"
},
"homepage": "https://github.com/mjamesd/jubilant-robot#readme",
"dependencies": {
"asciiart-logo": "^0.2.6",
"bcrypt": "^5.0.1",
"connect-session-sequelize": "^7.0.4",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"express-handlebars": "^6.0.2",
"express-session": "^1.17.2",
"mysql2": "^2.3.3",
"sequelize": "^6.3.5"
},
"devDependencies": {
"nodemon": "^2.0.3"
}
}