This repository has been archived by the owner on Dec 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
100 lines (100 loc) · 3.27 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
94
95
96
97
98
99
100
{
"name": "react-typescript",
"version": "0.1.0",
"private": true,
"homepage": "https://codebelt.github.io/react-redux-architecture",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"post-commit": "git update-index -g"
}
},
"scripts": {
"---------- HELPERS -------------------------------------------------------------------------------------": "",
"generate": "node ./tools/generate.js",
"---------- DEVELOPMENT ---------------------------------------------------------------------------------": "",
"start": "cross-env CLIENT_ENV=development craco start",
"prod": "cross-env CLIENT_ENV=production craco start",
"---------- PRODUCTION ----------------------------------------------------------------------------------": "",
"build": "cross-env CLIENT_ENV=production craco build",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"---------- TESTING -------------------------------------------------------------------------------------": "",
"test": "cross-env CLIENT_ENV=test craco test",
"ts": "tsc --noEmit",
"ts:watch": "npm run ts -- --watch",
"lint": "eslint 'src/**/*.{js,ts,tsx}' --fix",
"--------------------------------------------------------------------------------------------------------": ""
},
"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"
]
},
"dependencies": {
"axios": "0.19.2",
"classnames": "2.2.6",
"connected-react-router": "6.7.0",
"dayjs": "1.8.21",
"history": "4.10.1",
"lodash.groupby": "4.6.0",
"react": "16.13.0",
"react-app-polyfill": "1.0.6",
"react-dom": "16.13.0",
"react-redux": "7.2.0",
"react-router-dom": "5.1.2",
"redux": "4.0.5",
"redux-devtools-extension": "2.13.8",
"redux-freeze": "0.1.7",
"redux-thunk": "2.3.0",
"reselect": "4.0.0",
"semantic-ui-css": "2.4.1",
"semantic-ui-react": "0.88.2",
"sjs-base-model": "1.9.0",
"uuid": "7.0.1"
},
"devDependencies": {
"@babel/plugin-proposal-nullish-coalescing-operator": "7.8.3",
"@babel/plugin-proposal-optional-chaining": "7.8.3",
"@craco/craco": "5.6.3",
"@types/classnames": "2.2.9",
"@types/history": "4.7.5",
"@types/jest": "25.1.3",
"@types/lodash.groupby": "4.6.6",
"@types/node": "13.7.7",
"@types/react": "16.9.23",
"@types/react-dom": "16.9.5",
"@types/react-redux": "7.1.7",
"@types/react-router-dom": "5.1.3",
"@types/redux-mock-store": "1.0.2",
"@types/uuid": "7.0.0",
"@typescript-eslint/eslint-plugin": "2.21.0",
"@typescript-eslint/parser": "2.21.0",
"cross-env": "7.0.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "7.18.3",
"eslint-plugin-react-hooks": "2.5.0",
"generate-template-files": "2.2.1",
"gh-pages": "2.2.0",
"husky": "4.2.3",
"nock": "12.0.3",
"node-sass": "4.13.1",
"prettier": "1.19.1",
"pretty-quick": "2.0.1",
"react-scripts": "3.4.0",
"redux-mock-store": "1.5.4",
"typescript": "3.8.3"
}
}