-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 2.07 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
66
67
68
69
70
71
72
{
"name": "pressbooks-build-tools",
"version": "4.0.0",
"description": "NPM package which includes all asset linting and build tools for Pressbooks projects.",
"homepage": "https://github.com/pressbooks/pressbooks-build-tools#readme",
"bugs": {
"url": "https://github.com/pressbooks/pressbooks-build-tools/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pressbooks/pressbooks-build-tools.git"
},
"license": "GPL-3.0-or-later",
"author": {
"name": "Pressbooks (Book Oven Inc.)",
"email": "[email protected]",
"url": "https://pressbooks.org/"
},
"scripts": {
"build": "mix --production",
"fix": "eslint --fix **/*.js",
"lint": "run-s lint:*",
"lint:scripts": "eslint config/*.js assets/src/scripts/*.js",
"lint:styles": "stylelint **/*.scss",
"test": "run-s lint:* build",
"prepare": "husky install"
},
"commitlint": {
"extends": ["@commitlint/config-conventional"]
},
"eslintConfig": {
"extends": "./config/eslint.js"
},
"stylelint": {
"extends": "./config/stylelint.js"
},
"engines": {
"node": ">= 18"
},
"dependencies": {
"babel-eslint": "^10.1.0",
"browser-sync": "^2.27.1",
"browser-sync-webpack-plugin": "^2.3.0",
"cross-env": "^7.0.3",
"eslint": "^8.22.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^46.4.3",
"eslint-plugin-sort-destructure-keys": "^1.4.0",
"laravel-mix": "^6.0.25",
"postcss": "^8.3.5",
"prettier-stylelint": "^0.4.2",
"resolve-url-loader": "^5.0.0",
"sass": "^1.35.1",
"sass-loader": "^13.0.2",
"stylelint": "^14.10.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended": "^9.0.0",
"stylelint-config-standard-scss": "^6.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"husky": "^8.0.1",
"lint-staged": "^14.0.1",
"npm-run-all": "^4.1.5"
},
"lint-staged": {
"*.js": "eslint --fix",
"*.scss": "stylelint --fix"
}
}