forked from WoWAnalyzer/WoWAnalyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.36 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
101
102
103
104
105
106
107
108
109
{
"name": "wowanalyzer",
"description": "The WoWAnalyzer client-side app.",
"repository": "https://github.com/WoWAnalyzer/WoWAnalyzer",
"license": "AGPL-3.0-or-later",
"dependencies": {
"@lingui/react": "^2.9.0",
"@types/react-toggle": "^4.0.2",
"@wowanalyzer/react-tooltip-lite": "3.1.1",
"d3-dsv": "^1.1.1",
"d3-scale": "^2.2.2",
"d3-scale-chromatic": "^1.3.3",
"d3-selection": "^1.4.0",
"d3-shape": "^1.3.5",
"es6-error": "^4.1.1",
"gemini-scrollbar": "^1.5.3",
"history": "^4.9.0",
"prop-types": "^15.7.2",
"rc-slider": "^8.6.13",
"react": "^16.13.1",
"react-animate-height": "^2.0.15",
"react-dom": "^16.8.6",
"react-gemini-scrollbar": "^2.3.4",
"react-masonry-component": "^6.2.1",
"react-onclickoutside": "^6.8.0",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"react-select-search": "^2.1.1",
"react-textfit": "^1.1.0",
"react-toggle": "^4.0.2",
"react-transition-group": "^1.2.1",
"react-vega": "^7.4.1",
"react-virtualized": "^9.21.1",
"redux": "^4.0.4",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"sass-text-stroke": "1.0.1",
"universal-cookie": "^2.2.0",
"vega": "^5.15.0",
"vega-lite": "^4.15.0"
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@emico/eslint-config": "^2.0.0",
"@lingui/cli": "^2.9.0",
"@lingui/core": "^2.9.0",
"@lingui/loader": "^2.9.0",
"@lingui/macro": "^2.9.0",
"@sentry/browser": "^5.19.1",
"@types/enzyme": "^3.10.7",
"@types/jest": "^24.0.23",
"@types/lingui__core": "^2.7.0",
"@types/lingui__macro": "^2.7.3",
"@types/lingui__react": "^2.8.1",
"@types/react": "^16.9.16",
"@types/react-dom": "^16.9.4",
"@types/react-redux": "^7.1.9",
"@types/react-router-dom": "^5.1.2",
"@types/react-test-renderer": "^16.9.1",
"@types/react-virtualized": "^9.21.10",
"archiver": "^3.1.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.9.0",
"customize-cra": "^1.0.0",
"decompress": "^4.2.0",
"dotenv": "^6.2.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"jest-canvas-mock": "^2.3.0",
"jest-enzyme": "^7.1.2",
"node-sass": "^4.14.0",
"patch-package": "^6.2.2",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.1.2",
"react-app-rewired": "^2.1.6",
"react-scripts": "^3.4.3",
"react-test-renderer": "^16.8.6",
"typescript": "^3.9.7"
},
"scripts": {
"start": "react-app-rewired start",
"safestart": "yarn && react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"test:interface": "yarn test --testPathIgnorePatterns \"integrationTests|/src\\/parser/\"",
"test:parser": "yarn test --testPathIgnorePatterns integrationTests ./src/parser",
"test:integration": "yarn test integrationTests",
"typecheck": "tsc",
"lint": "eslint . --ext .js,.ts,.tsx",
"extract": "lingui extract --overwrite --clean",
"script": "set NODE_ENV=development&&babel-node",
"postinstall": "patch-package"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"snapshotResolver": "./snapshotResolver.js"
}
}