-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1002 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
38
39
40
{
"name": "my-blog",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon ./bin/server.js --exec babel-node --presets es2015,stage-2"
},
"author": "",
"license": "ISC",
"dependencies": {
"consola": "^1.4.4",
"cookie-parser": "~1.4.3",
"crypto": "^1.0.1",
"debug": "~2.6.9",
"ejs": "~2.5.7",
"express": "~4.16.0",
"express-jwt": "^6.0.0",
"express-session": "^1.15.6",
"http-errors": "~1.6.2",
"jsonwebtoken": "^8.5.1",
"md5": "^2.2.1",
"moment": "^2.24.0",
"morgan": "~1.9.0",
"mysql": "^2.18.1",
"mysql2": "^2.1.0",
"node-fetch": "^2.3.0",
"nodemon": "^2.0.4",
"sequelize": "^5.21.4",
"yargs": "^12.0.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0"
}
}