-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 1.03 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
{
"name": "your-unique-service-name",
"private": true,
"engines": {
"node": "8"
},
"scripts": {
"clean": "rimraf node_modules/",
"deploy": "npm-run-all deploy:*",
"deploy:surge": "surge -p ./app/public -d $npm_package_name.surge.sh",
"deploy:now": "now --docker --public",
"dev": "NODE_ENV=localhost node app/index.js",
"docker:build": "docker build -t $npm_package_name .",
"docker:run": "docker run -p 8080:80 $npm_package_name",
"lint": "npm-run-all lint:*",
"lint:css": "stylelint --fix app/**/*.css",
"lint:js": "eslint --fix app/",
"lint:nsp": "nsp check --output summary"
},
"dependencies": {
"body-parser": "1.18.2",
"config": "1.29.4",
"express": "4.16.2",
"hbs": "4.0.1",
"morgan": "1.9.0"
},
"devDependencies": {
"eslint": "4.18.1",
"eslint-config-xo": "0.20.1",
"now": "9.3.3",
"npm-run-all": "4.1.2",
"nsp": "3.2.1",
"rimraf": " 2.6.2",
"stylelint": "9.1.1",
"stylelint-config-standard": "18.1.0",
"surge": "0.19.0"
}
}