-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.31 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
44
45
46
47
48
49
50
51
{
"name": "nwb-assemble",
"version": "1.0.0",
"description": "Describe nwb-assemble here",
"private": true,
"scripts": {
"build": "npm run build-assets && npm run build-templates",
"build-assets": "nwb build-web-app src dist/assets && npm run inject-styles",
"build-templates": "assemble --file=assemble.config.js",
"inject-styles": "assemble --file=assemble.config.js inject",
"clean": "nwb clean-app",
"start": "run-p watch serve",
"test": "nwb test",
"test:coverage": "nwb test --coverage",
"test:watch": "nwb test --server",
"serve": "node live-server.js",
"watch": "npm-watch"
},
"watch": {
"build-templates": {
"patterns": [
"src/views"
],
"extensions": "hbs,json"
},
"build-assets": {
"patterns": [
"src"
],
"extensions": "js,scss"
}
},
"devDependencies": {
"assemble": "^0.24.3",
"gulp-extname": "^0.2.2",
"gulp-inject": "^4.3.0",
"handlebars-helpers": "^0.9.8",
"jsonfile": "^4.0.0",
"live-server": "^1.2.0",
"manifest-webpack-plugin": "^0.2.0",
"npm-run-all": "^4.1.2",
"npm-watch": "^0.3.0",
"nwb": "0.18.x",
"pretty": "^2.0.0",
"wait-on": "^2.0.2",
"webpack-manifest-plugin": "^1.3.2"
},
"author": "",
"license": "MIT",
"repository": ""
}