-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.71 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
73
{
"name": "jsonprima-web",
"version": "0.1.0",
"private": true,
"proxy": "http://localhost:3000",
"dependencies": {
"@rebass/grid": "^6.0.0",
"axios": "^0.19.0",
"prismjs": "^1.16.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-github-corners": "^0.2.1",
"react-redux": "^7.1.0",
"react-scripts": "3.0.1",
"react-simple-code-editor": "^0.9.11",
"react-toastify": "^5.3.2",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"styled-components": "^5.0.0-beta.6",
"styled-normalize": "^8.0.6"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "cross-env CI=true react-scripts test",
"eject": "echo \"Eject is not allowed\" && exit 1",
"cm": "git-cz"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"chai": "^4.2.0",
"commitizen": "^3.1.1",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "2.1.0",
"husky": "^2.7.0",
"lint-staged": "^8.2.1",
"prettier": "^1.18.2",
"redux-mock-store": "^1.5.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,jsx,json,css,scss,md}": [
"prettier --write",
"git add"
]
}
}