-
Notifications
You must be signed in to change notification settings - Fork 4.6k
/
package.json
43 lines (43 loc) · 1.21 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
{
"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'",
"stop": "cross-env NODE_ENV=production pm2 stop myblog",
"lint": "eslint --fix config lib middlewares models routes test"
},
"author": "nswbmw",
"license": "MIT",
"dependencies": {
"config-lite": "2.1.0",
"connect-flash": "0.1.1",
"connect-mongo": "2.0.1",
"ejs": "2.5.7",
"express": "4.16.2",
"express-formidable": "git+https://github.com/utatti/express-formidable.git",
"express-session": "1.15.6",
"express-winston": "2.4.0",
"marked": "0.3.12",
"moment": "2.20.1",
"mongolass": "~4.1.1",
"objectid-to-timestamp": "1.3.0",
"sha1": "1.1.1",
"winston": "2.4.0"
},
"devDependencies": {
"cross-env": "5.2.0",
"eslint": "5.5.0",
"eslint-config-standard": "11.0.0-beta.0",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-node": "5.2.1",
"eslint-plugin-promise": "3.6.0",
"eslint-plugin-standard": "3.0.1",
"istanbul": "0.4.5",
"mocha": "4.1.0",
"pm2": "3.0.0",
"supertest": "3.0.0"
}
}