-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.02 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.02 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
{
"name": "quickstart",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:app": "node_modules/.bin/browserify -t browserify-css --debug src/app.js -o dist/bundle.js",
"build": "npm run build:app",
"watch:app": "node_modules/.bin/watchify -t browserify-css -v --debug src/app.js -o dist/bundle.js",
"watch:static": "node_modules/.bin/cpx \"src/**/*.{html,png,jpg}\" dist --watch -v",
"server": "node_modules/.bin/browser-sync start --server \"dist\" --files \"dist\"",
"start": "node_modules/.bin/concurrently \"npm run watch:app\" \"npm run watch:static\" \"npm run server\""
},
"author": "Nitipan Pompan",
"license": "ISC",
"dependencies": {
"angular": "^1.6.4",
"rxjs": "^5.3.0"
},
"devDependencies": {
"browser-sync": "^2.18.8",
"browserify": "^14.3.0",
"browserify-css": "^0.10.0",
"concurrently": "^3.4.0",
"cpx": "^1.5.0",
"watchify": "^3.9.0"
}
}