-
Notifications
You must be signed in to change notification settings - Fork 394
/
package.json
129 lines (129 loc) · 4.13 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "opendota-web",
"description": "Dota 2 Data Web UI",
"version": "1.0.1",
"private": true,
"license": "MIT",
"scripts": {
"start": "vite --host",
"start:install": "npm install && npm run lint && npm run start",
"preview": "vite preview --host",
"build": "vite build && npm run typecheck",
"build:install": "npm install && npm run lint && npm run build",
"test": "testcafe -c 4 chrome testcafe/ --app \"serve -s build\"",
"analyze": "source-map-explorer build/static/js/main.* --html > analyze.html",
"typecheck": "tsc --project tsconfig.json --noEmit",
"lintfix": "eslint . --ext .ts,.tsx,.js,.jsx --fix",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"update:emoticons": "npm r dota2-emoticons && npm i dota2-emoticons && node dev/updateEmoticons.js"
},
"repository": {
"type": "git",
"url": "http://github.com/odota/web"
},
"dependencies": {
"@material-ui/core": "^4.5.0",
"@material-ui/icons": "^4.5.1",
"@material-ui/styles": "^4.5.0",
"@stripe/stripe-js": "^1.32.0",
"abcolor": "^0.5.5",
"ace-builds": "^1.4.7",
"core-js": "^3.6.4",
"dota2-emoticons": "^1.0.3",
"dotaconstants": "^8.12.0",
"fuzzy": "^0.1.3",
"heatmap.js": "github:muyao1987/heatmap.js",
"history": "^4.10.1",
"lodash": "^4.17.15",
"long": "^4.0.0",
"material-ui": "^0.20.2",
"nanoid": "^2.1.8",
"papaparse": "^5.1.1",
"prop-types": "^15.7.2",
"querystring": "^0.2.1",
"react": "^17.0.2",
"react-content-loader": "^3.1.2",
"react-countup": "^6.5.0",
"react-dom": "^17.0.2",
"react-ga": "^2.7.0",
"react-helmet": "^5.2.1",
"react-lazylog": "^4.5.3",
"react-markdown": "^4.0.3",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"react-stripe-checkout": "^2.6.3",
"react-tooltip": "3.11.1",
"react-transition-group": "^2.5.0",
"recharts": "^2.4.3",
"redux": "^4.0.5",
"redux-responsive": "^4.3.8",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"seamless-immutable": "^7.1.3",
"styled-components": "^4.4.1",
"use-react-router": "^1.0.7",
"vite": "^4.5.0",
"wordcloud": "^1.1.1"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/eslint-parser": "^7.23.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.23.7",
"@babel/preset-env": "^7.23.7",
"@babel/preset-react": "^7.23.3",
"@types/core-js": "^2.5.2",
"@types/eslint": "^6.1.3",
"@types/heatmap.js": "^2.0.36",
"@types/history": "^4.7.3",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/isomorphic-fetch": "^0.0.35",
"@types/jest": "^24.0.24",
"@types/lodash": "^4.14.149",
"@types/long": "^4.0.0",
"@types/material-ui": "^0.20.8",
"@types/nanoid": "^2.1.0",
"@types/node": "^12.12.20",
"@types/papaparse": "^5.0.3",
"@types/prop-types": "^15.7.3",
"@types/react": "^17.0.40",
"@types/react-content-loader": "^3.1.4",
"@types/react-dom": "^17.0.13",
"@types/react-helmet": "^5.0.11",
"@types/react-redux": "^7.1.4",
"@types/react-router-dom": "^4.3.5",
"@types/react-tooltip": "3.9.3",
"@types/react-transition-group": "^2.9.2",
"@types/recharts": "^1.8.27",
"@types/seamless-immutable": "^7.1.11",
"@types/styled-components": "4.0.3",
"@types/wordcloud": "^1.1.1",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-preset-es2015": "^6.24.1",
"cross-env": "^6.0.3",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"hoist-non-react-statics": "^3.3.1",
"husky": "^3.1.0",
"isomorphic-fetch": "^2.2.1",
"sanitize-filename": "^1.6.3",
"simple-vdf": "^1.1.1",
"testcafe": "^1.7.1",
"testcafe-react-selectors": "^3.3.0",
"typescript": "^5.2.2"
},
"overrides": {
"react-error-overlay": "6.0.9"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}