-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
97 lines (97 loc) · 2.3 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
{
"name": "wows_ballistics",
"version": "2.3.5",
"private": true,
"license": "MIT",
"homepage": "http://jcw780.github.io/wows_ballistics",
"dependencies": {
"@types/jest": "^26.0.19",
"@types/node": "^14.14.14",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"bootstrap": "^4.5.3",
"bootstrap-switch-button-react": "1.2.0",
"chart.js": "^2.9.3",
"distinct-colors": "^3.0.0",
"file-saver": "^2.0.2",
"lodash.clonedeep": "^4.5.0",
"normal-distribution": "^0.0.9",
"pako": "^1.0.11",
"react": "17.0.0",
"react-bootstrap": "^1.4.0",
"react-chartjs-2": "^2.11.1",
"react-dom": "17.0.0",
"react-ga": "3.3.0",
"react-scripts": "^4.0.1",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "2.0.1",
"typescript": "^4.1.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"changelog": "auto-changelog -p -u --commit-limit false",
"version": "auto-changelog -p --commit-limit false"
},
"auto-changelog": {
"output": "HISTORY.md",
"template": "keepachangelog",
"unreleased": true,
"commitLimit": false
},
"eslintConfig": {
"rules": {
"no-unused-expressions": "off",
"no-restricted-globals": "off",
"no-undef": "off",
"import/no-amd": "off",
"prefer-const": 1,
"no-var": 1
},
"overrides": [
{
"files": [
"src/*.wasm.js"
],
"rules": {
"no-unused-expressions": "off",
"no-restricted-globals": "off",
"no-undef": "off",
"import/no-amd": "off"
}
}
],
"extends": [
"react-app",
"react-app/jest"
]
},
"reactSnap": {
"inlineCss": false
},
"resolutions": {
"eslint-webpack-plugin": "2.4.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"auto-changelog": "^2.0.0",
"gh-pages": "3.1.0",
"react-snap": "^1.23.0",
"wasm-feature-detect": "^1.2.3"
}
}