-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 867 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
26
27
{
"name": "html-template",
"version": "0.1.0",
"description": "First version/beta of the html template",
"scripts": {
"prebuild": "rimraf ./public",
"build": "npm-run-all build:*",
"build:css": "node scripts/build-css.js",
"build:js": "node scripts/build-js.js",
"build:assets": "node scripts/build-assets.js",
"build:img": "node scripts/build-img.js",
"watch": "npm-run-all watch:*",
"watch:css": "chokidar \"src/css/*.css\" --c \"npm run build:css\"",
"watch:js": "chokidar \"src/js/*.js\" --c \"npm run build:js\"",
"watch:assets": "chokidar 'src/**/*.*' --command 'npm run build:static:assets'"
},
"devDependencies": {
"chokidar-cli": "^2.1.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-terser": "^2.1.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2"
}
}