-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 1.95 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 1.95 KB
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
{
"name": "clonecoin-frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@ant-design/icons": "^4.6.4",
"@craco/craco": "^6.3.0",
"@reduxjs/toolkit": "^1.6.1",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"antd": "^4.16.13",
"axios": "^0.21.4",
"craco-alias": "^3.0.1",
"history": "^5.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.3",
"react-router-dom": "^6.0.0-beta.0",
"react-scripts": "4.0.3",
"recharts": "^2.1.4",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"redux-saga": "^1.1.3",
"styled-components": "^5.3.1",
"styled-normalize": "^8.0.7",
"typesafe-actions": "^5.1.0"
},
"scripts": {
"start": "craco start",
"build": "CI= craco build",
"test": "craco test",
"eject": "craco eject"
},
"eslintConfig": {
"extends": [
"eslint-config-prettier",
"eslint:recommended",
"plugin:react/recommended"
],
"plugins": [
"eslint-plugin-prettier"
],
"env": {
"browser": true,
"node": true,
"es6": true
},
"parser": "babel-eslint",
"rules": {
"no-unused-vars": "warn",
"react/prop-types": "off",
"react/react-in-jsx-scope": "off",
"react/no-children-prop": "off",
"react/jsx-filename-extension": [
1,
{
"extensions": [
".js",
".jsx"
]
}
]
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all",
"not ie <= 11"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"babel-plugin-styled-components": "^1.13.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.4.0"
}
}