-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.55 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "cra-typescript-boilerplate",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"start": "PORT=3001 react-app-rewired start --watch",
"build": "react-app-rewired build",
"test": "react-app-rewired test --watchAll=false",
"test:watch": "jest --watchAll",
"eject": "react-scripts eject",
"commit": "git-cz",
"storybook": "start-storybook -s ./public -p 6005"
},
"dependencies": {
"axios": "0.20.0",
"history": "^5.0.0",
"immer": "8.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"styled-components": "5.2.0",
"styled-media-query": "2.1.2",
"zustand": "3.2.0",
"zustand-persist": "0.3.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@babel/core": "7.11.6",
"@babel/preset-typescript": "7.10.4",
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@storybook/addon-essentials": "6.0.28",
"@storybook/react": "6.0.28",
"@testing-library/dom": "7.27.0",
"@testing-library/jest-dom": "5.11.6",
"@testing-library/react": "11.0.4",
"@testing-library/user-event": "12.1.6",
"@types/jest": "22.2.3",
"@types/node": "^14.0.5",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "4.2.6",
"@types/styled-components": "^5.1.4",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"commitizen": "4.2.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "2.3.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^4.0.0",
"husky": "^4.2.3",
"babel-jest": "^24.9.0",
"jest-dom": "^4.0.0",
"jest-styled-components": "7.0.3",
"lint-staged": "^10.2.6",
"prettier": "^2.0.1",
"react-app-rewired": "^2.1.6",
"react-scripts": "^3.4.1",
"typescript": "^3.9.3"
}
}