-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
25 lines (25 loc) · 849 Bytes
/
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
{
"name": "iat355-stacked-bar",
"version": "1.0.0",
"description": "",
"author": "@charliecm",
"license": "MIT",
"repository": "https://github.com/charliecm/iat355-stacked-bar",
"scripts": {
"clean": "rm -rf dist && mkdir dist",
"build:copy": "cpx 'src/**/*.{html,jpg,png,ico,js,csv}' dist -v",
"watch:copy": "cpx 'src/**/*.{html,jpg,png,ico,js,csv}' dist -v -w --no-initial",
"build:css": "node-sass src/css -o dist/css",
"watch:css": "node-sass -w src/css -o dist/css",
"livereload": "livereload dist -w 500",
"server": "http-server dist -p 8080 -s -o",
"build": "npm run clean && run-s build:*",
"watch": "npm run build && run-p watch:* server livereload"
},
"devDependencies": {
"cpx": "^1.5.0",
"http-server": "^0.9.0",
"livereload": "^0.6.0",
"npm-run-all": "^4.0.1"
}
}