forked from kvnam/reactpress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.99 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
{
"name": "reactpress",
"version": "0.1.0",
"private": true,
"dependencies": {
"@craco/craco": "^5.6.4",
"@types/jest": "^26.0.4",
"@types/node": "^14.0.14",
"@types/react": "^16.9.41",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.5",
"antd": "^4.4.1",
"axios": "^0.18.0",
"bootstrap": "^4.5.0",
"react": "^16.13.0",
"react-dom": "^16.13.1",
"react-html-parser": "^2.0.2",
"react-redux": "^7.1.0",
"react-router-dom": "^5.2.0",
"react-router-transition": "^2.0.0",
"react-scripts": "^3.4.1",
"reactstrap": "^8.4.0",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"typescript": "^3.9.6",
"snyk": "^1.360.0"
},
"scripts": {
"start": "craco start",
"build": "react-scripts build",
"test": "react-scripts test --colors --verbose ",
"test-jest": "jest",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"jest": {
"transform": {
"\\.(ts|tsx)$": "./test-preprocessor.js"
},
"snapshotSerializers": [
"enzyme-to-json"
]
},
"devDependencies": {
"@types/enzyme": "^3.10.5",
"@types/react-redux": "^7.1.9",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.5.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.0",
"enzyme-to-json": "^3.5.0",
"eslint-config-airbnb-typescript": "^8.0.2",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0",
"prettier": "^2.0.5",
"react-test-renderer": "^16.13.0",
"redux-mock-store": "^1.5.4"
},
"prettier": {
"semi": true,
"printWidth": 125,
"singleQuote": false,
"bracketSpacing": true,
"trailingComma": "all"
}
}