-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 2.56 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
{
"name": "react-xiangqi",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/core": "^10.0.10",
"@emotion/styled": "^10.0.10",
"@use-it/event-listener": "^0.1.3",
"axios": "^0.18.1",
"babel-polyfill": "^6.26.0",
"core-js": "^3.6.4",
"es6-promise": "^4.2.6",
"immutability-helper": "^3.0.0",
"isomorphic-fetch": "^2.2.1",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.19",
"lodash.sample": "^4.2.1",
"react": "^16.8.6",
"react-dnd": "^10.0.2",
"react-dnd-html5-backend": "^10.0.2",
"react-dom": "^16.8.6",
"react-redux": "^7.1.3",
"react-scripts": "3.0.0",
"redux": "^4.0.5",
"redux-actions": "^2.6.5",
"redux-thunk": "^2.3.0",
"regenerator-runtime": "^0.13.5",
"reselect": "^4.0.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.88.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"predeploy": "yarn build",
"deploy": "gh-pages -t -d build",
"test": "jest",
"eject": "react-scripts eject"
},
"homepage": "https://xchi.online",
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"jest": {
"testPathIgnorePatterns": [
"/node_modules/"
],
"moduleDirectories": [
"node_modules",
"src"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/assetsTransformer.js",
"\\.(css|less)$": "<rootDir>/assetsTransformer.js"
},
"setupFilesAfterEnv": [
"<rootDir>/src/setupTests.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"devDependencies": {
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^24.8.0",
"dotenv": "^8.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.4",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-google": "^0.9.1",
"eslint-config-walmart": "^2.2.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.8.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.6.1",
"eslint-plugin-simple-import-sort": "^5.0.3",
"gh-pages": "^2.0.1",
"jest": "^24.8.0",
"jest-enzyme": "^7.1.2",
"prettier": "1.19.1",
"react-test-renderer": "^16.8.6",
"redux-devtools": "^3.5.0",
"redux-mock-store": "^1.5.4"
}
}