-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.13 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
{
"name": "myblog",
"version": "1.0.0",
"description": "my first blog",
"main": "index.js",
"scripts": {
"test": "istanbul cover _mocha",
"start": "cross-env NODE_ENV=production pm2 start index.js --name 'myblog'",
"heroku": "NODE_ENV=production node index",
"lint": "eslint . --fix"
},
"author": "",
"license": "ISC",
"dependencies": {
"config-lite": "2.1.0",
"connect-flash": "0.1.1",
"connect-mongo": "2.0.3",
"ejs": "2.6.1",
"express": "4.16.4",
"express-formidable": "git+https://github.com/utatti/express-formidable.git",
"express-session": "1.15.6",
"express-winston": "3.1.0",
"marked": "0.6.2",
"moment": "2.24.0",
"mongolass": "4.4.2",
"objectid-to-timestamp": "1.3.0",
"sha1": "1.1.1",
"winston": "3.2.1"
},
"devDependencies": {
"cross-env": "5.2.0",
"eslint": "5.16.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.17.2",
"eslint-plugin-node": "9.0.1",
"eslint-plugin-promise": "4.1.1",
"eslint-plugin-standard": "4.0.0",
"istanbul": "0.4.5",
"mocha": "6.1.4",
"supertest": "4.0.2"
}
}