-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.67 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.67 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "task-runner",
"version": "1.0.0",
"description": "",
"main": "index.html",
"scripts": {
"init-project": "npm instal && npm-run-all init:*",
"init:dirs": "mkdirp sass css vendor images js",
"init:files": "touch README.md index.html sass/style.scss js/script.js",
"init:gitignore": "curl https://raw.githubusercontent.com/github/gitignore/master/Node.gitignore -o .gitignore",
"test": "npm-run-all test:*",
"test:html": "html-validate *.html",
"test:js": "eslint js/",
"test:scss": "stylelint sass/",
"build": "npm-run-all build:* test",
"build:sass": "sass --style=compressed --no-source-map sass:css",
"build:autoprefixer": "postcss css/*.css --use autoprefixer -d css",
"build-dev": "npm-run-all build-dev:sass build:autoprefixer",
"build-dev:sass": "sass --style=expanded --source-map sass:css",
"watch": "npm-run-all build:* build-dev -p watch:*",
"watch:browsersync": "browser-sync start --server --files \"css/*.css\" \"*.html\" \"js/*.js\"",
"watch:eslint": "esw --watch --changed --clear",
"watch:sassprefixer": "onchange sass/*.scss -- npm run build-dev"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^10.2.4",
"browser-sync": "^2.27.10",
"eslint": "^8.31.0",
"eslint-plugin-vue": "^9.8.0",
"eslint-watch": "^8.0.0",
"html-validate": "^7.8.0",
"mkdirp": "^1.0.4",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"postcss": "^8.2.6",
"postcss-cli": "^8.3.1",
"prettier": "2.8.1",
"sass": "^1.55.0",
"stylelint": "^14.16.1",
"stylelint-config-standard-scss": "^6.1.0",
"stylelint-scss": "^4.3.0"
}
}