-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.17 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.17 KB
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": "tinyplate",
"version": "0.0.0",
"private": true,
"scripts": {
"preinstall": "misc/git/create-pre-commit-file",
"build-css": "node-sass --include-path scss scss/main.scss public/css/main.css",
"build-js": "webpack client/indexes/main.js --output tmp/main.js; babel tmp --out-dir public/js/bundle --presets es2015-ie",
"start": "nodemon --ext scss,js --ignore tmp --ignore public/js/bundle --exec \"npm run build-css; npm run build-js; node ./bin/www\"",
"test": "mocha **/*.test.js --reporter spec",
"posttest": "nsp check; snyk test"
},
"dependencies": {
"body-parser": "~1.18.2",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"express": "~4.16.1",
"helmet": "^3.12.0",
"hoek": "^5.0.3",
"morgan": "~1.9.0",
"pug": "~2.0.1",
"serve-favicon": "~2.4.5",
"static-asset": "^0.6.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015-ie": "^6.7.0",
"chai": "^4.1.2",
"mocha": "^5.0.4",
"node-sass": "^4.7.2",
"nodemon": "^1.17.1",
"nsp": "^3.2.1",
"snyk": "^1.69.10",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.11"
}
}