-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.37 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
{
"name": "ke-biau",
"version": "0.1.0",
"private": true,
"homepage": "https://x3388638.github.io/KeBiau",
"dependencies": {
"bootstrap": "^4.5.0",
"lodash.clonedeep": "^4.5.0",
"moment": "^2.27.0",
"prop-types": "^15.7.2",
"react": "^16.4.1",
"react-addons-css-transition-group": "^15.6.0",
"react-addons-transition-group": "^15.6.0",
"react-dom": "^16.13.1",
"react-router-dom": "^4.2.2",
"react-scripts": "^3.4.1",
"react-spinners": "^0.10.4",
"react-tagsinput": "^3.17.0",
"reactstrap": "^6.3.0",
"styled-components": "^3.3.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"deploy": "gh-pages -d build",
"prettier:check": "prettier --check './**/*.{js,json,jsx,html,css}'",
"prettier:write": "prettier --write './**/*.{js,json,jsx,html,css}'"
},
"devDependencies": {
"gh-pages": "^1.0.0",
"husky": "^5.0.9",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"*.{js,json,jsx,html,css}": "npm run prettier:check"
}
}