-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.16 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
{
"name": "react-app-ts",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/core": "7.12.3",
"@emotion/core": "11.0.0",
"@emotion/react": "11.1.5",
"@emotion/styled": "11.1.5",
"@material-ui/core": "4.11.0",
"@material-ui/icons": "4.9.1",
"@storybook/addon-actions": "6.0.28",
"@storybook/addon-links": "6.0.28",
"@storybook/addons": "6.0.28",
"@storybook/cli": "6.0.28",
"@storybook/react": "6.0.28",
"@types/jest": "26.0.20",
"@types/node": "12.20.7",
"@types/react": "16.14.51",
"@types/react-dom": "16.9.9",
"@types/redux-logger": "3.0.8",
"@types/storybook__addon-actions": "3.4.3",
"@types/storybook__react": "4.0.2",
"axios": "0.21.2",
"babel-loader": "8.1.0",
"immer": "9.0.1",
"json-server": "0.16.2",
"lodash": "4.17.21",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-redux": "7.2.1",
"react-scripts": "4.0.3",
"redux": "4.0.5",
"redux-devtools-extension": "2.13.9",
"redux-logger": "3.0.6",
"redux-thunk": "2.3.0",
"rosie": "2.0.1",
"typesafe-actions": "5.1.0",
"typescript": "4.1.5"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 6006",
"start:server": "json-server --watch api/db.json -p 4000"
},
"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": "12.0.1",
"@commitlint/config-conventional": "12.0.1",
"@testing-library/jest-dom": "5.11.5",
"@testing-library/react": "11.1.1",
"@types/lodash": "4.14.168",
"@types/react-redux": "7.1.9",
"@types/rosie": "0.0.38",
"husky": "5.2.0",
"jest-emotion": "11.0.0",
"prettier": "2.1.2"
},
"prettier": {
"semi": false
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}