-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.12 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
{
"private": true,
"scripts": {
"start": "eleventy --serve --quiet",
"stylelint": "stylelint \"src/styles/**/*.css\"",
"eslint": "eslint src/**/*.js",
"test": "npm run stylelint && npm run eslint",
"build": "eleventy && gulp build"
},
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"autoprefixer": "^10.3.4",
"del": "^6.0.0",
"eslint": "^7.32.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-postcss": "^9.0.1",
"gulp-replace": "^1.1.3",
"gulp-rev": "^9.0.0",
"gulp-rev-rewrite": "^5.0.0",
"gulp-terser": "^2.0.1",
"html-minifier": "^4.0.0",
"postcss": "^8.3.6",
"postcss-color-hex-alpha": "^7.0.0",
"postcss-csso": "^5.0.0",
"postcss-import": "^14.0.2",
"pretty-data": "^0.40.0",
"rollup-stream": "^1.24.1",
"slugify": "^1.6.0",
"stylelint": "^13.13.1",
"stylelint-order": "^4.1.0",
"vinyl-buffer": "^1.0.1",
"vinyl-paths": "^3.0.1",
"vinyl-source-stream": "^2.0.0"
},
"browserslist": [
"last 2 version",
"not dead",
"not ie <= 11"
]
}