-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.58 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
{
"private": true,
"name": "labor-cost",
"version": "0.2.4",
"homepage": "http://tw0517tw.github.io/labor-cost",
"scripts": {
"build": "react-scripts build",
"deploy": "npm run build && gh-pages -d build",
"eject": "react-scripts eject",
"lint": "eslint .",
"prepare": "husky install",
"start": "react-scripts start",
"test": "react-scripts test --env=jsdom"
},
"dependencies": {
"bootstrap": "^4.6.0",
"lodash": "^4.17.21",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3",
"reactstrap": "^8.9.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-yoctol": "^0.26.2",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"gh-pages": "^3.2.3",
"husky": "^7.0.0",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"prettier-package-json": "^2.6.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"lint-staged": {
"*.js": [
"eslint --fix"
],
"*.{json,md}": [
"prettier --write"
],
"*.babelrc": [
"prettier --parser json --write"
],
"*package.json": [
"prettier-package-json --write",
"prettier --write"
]
},
"prettier": {
"trailingComma": "es5",
"singleQuote": true
}
}