-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.84 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
61
62
63
64
65
{
"name": "fugu-detector",
"version": "0.0.1",
"homepage": "/",
"private": true,
"scripts": {
"start": "npm run fugu-api && ELEVENTY_ENV=development eleventy --serve --quiet",
"prod": "npm run build:prod && npx live-server docs",
"build": "rm -rf docs && npm run fugu-api && eleventy && gulp build",
"build:prod": "ELEVENTY_ENV=production npm run build",
"fix": "eslint --fix && stylelint --fix \"src/style.css\"",
"fugu-api": "cp node_modules/fugu-api-data/patterns.js src/fugu-patterns.js",
"lint:css": "stylelint \"src/style.css\"",
"lint:editorconfig": "editorconfig-checker",
"lint:js": "eslint .",
"lint": "npm run lint:editorconfig && npm run lint:css && npm run lint:js",
"prepare": "npx simple-git-hooks"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^10.4.12",
"del": "^6.0.0",
"editorconfig-checker": "^5.1.2",
"eslint": "^8.23.1",
"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.1.0",
"html-minifier": "^4.0.0",
"lint-staged": "^11.0.0",
"postcss": "^8.4.33",
"postcss-color-hex-alpha": "^8.0.4",
"postcss-csso": "^6.0.1",
"simple-git-hooks": "^2.8.0",
"stylelint": "^14.12.1",
"stylelint-order": "^5.0.0",
"vinyl-paths": "^3.0.0",
"workbox-build": "^7.0.0"
},
"dependencies": {
"@11ty/eleventy": "^1.0.2",
"@11ty/eleventy-fetch": "^3.0.0",
"fugu-api-data": "^1.18.1"
},
"lint-staged": {
"*": [
"editorconfig-checker"
],
"*.js": [
"eslint --fix"
],
"*.css": [
"stylelint --fix --allow-empty-input"
]
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"pre-push": "npm run lint"
}
}