-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 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
39
{
"name": "awesome-notes",
"version": "1.0.0",
"license": "MIT",
"engines": {
"node": "6.9.5"
},
"scripts": {
"clean": "rimraf node_modules/",
"deploy:heroku": "git push -f heroku master",
"deploy:now": "now --docker",
"deploy:surge": "surge -p ./app/public -d urfu2016-notes.surge.sh",
"favicon": "node scripts/favicon.js",
"lint": "npm-run-all lint:*",
"lint:css": "stylefmt app/public/*.css && stylelint app/public/*.css",
"lint:js": "eslint app/ scripts/ --fix",
"lint:nsp": "nsp check --output summary",
"start": "NODE_ENV=local node app/index.js"
},
"dependencies": {
"body-parser": "1.16.1",
"express": "4.14.1",
"hbs": "4.0.1",
"morgan": "1.8.1"
},
"devDependencies": {
"eslint": "3.16.1",
"eslint-config-xo": "0.17.0",
"now": "4.6.0",
"npm-run-all": "4.0.2",
"nsp": "2.6.2",
"rimraf": "2.6.0",
"stylefmt": "5.1.2",
"stylelint": "7.9.0",
"stylelint-config-standard": "16.0.0",
"surge": "0.18.0",
"to-ico": "1.1.3"
}
}