-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 796 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 796 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "czerniak",
"scripts": {
"build:scss": "node-sass --output-style compressed -o dist/styles src/styles",
"watch:scss": "onchange -i -v \"./src/styles/*.scss\" -- npm run build:scss",
"lint:js": "eslint --fix ./src/js/*.js",
"watch:js": "onchange -i -v \"./src/js/*.js\" -- npm run lint:js",
"start": "browser-sync -s -f \"./index.html, dist/**/*, src/**/*\"",
"watch:all": "parallelshell \"npm start\" \"npm run watch:scss\" \"npm run watch:js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"browser-sync": "^2.26.7",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"node-sass": "^4.13.1",
"onchange": "^6.1.0",
"parallelshell": "^3.0.1"
},
"dependencies": {}
}