generated from adamstddrd/grease
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
60 lines (60 loc) · 1.53 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "Hotwire",
"version": "1.0.0",
"private": true,
"description": "the wire... it's hot",
"devDependencies": {
"@11ty/eleventy": "^0.11.1",
"cssnano": "^4.1.10",
"del-cli": "^3.0.1",
"eslint": "^7.15.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"gulp": "^4.0.2",
"gulp-changed": "^4.0.2",
"gulp-esbuild": "^0.3.4",
"gulp-imagemin": "^7.1.0",
"gulp-postcss": "^9.0.0",
"gulp-rename": "^2.0.0",
"gulp-sourcemaps": "^3.0.0",
"husky": "^4.3.5",
"lint-staged": "^10.5.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.1",
"postcss-import": "^13.0.0",
"postcss-import-ext-glob": "^1.1.0",
"postcss-preset-env": "^6.7.0",
"stylelint": "^13.8.0",
"stylelint-config-standard": "^20.0.0"
},
"scripts": {
"serve": "npm-run-all clean -p watch:**",
"publish:stage": "ELEVENTY_ENV=stage run-s build:**",
"publish:prod": "ELEVENTY_ENV=prod run-s build:**",
"build:11ty": "npx eleventy",
"watch:11ty": "npx eleventy --serve --quiet",
"build:assets": "gulp",
"watch:assets": "gulp watch",
"lint:css": "stylelint _source/**/*.pcss --fix",
"lint:js": "eslint _source/**/*.js --fix",
"clean": "del-cli _public/**"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"_source/**/*.pcss": [
"stylelint --fix"
],
"_source/**/*.js": [
"eslint --fix"
]
},
"browserslist": [
"cover 90% in US",
"not dead",
"not ie 11"
]
}