-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
70 lines (70 loc) · 2.31 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
{
"name": "@timkurvers/redota",
"version": "1.10.0",
"author": "Tim Kurvers <[email protected]>",
"repository": "github:timkurvers/redota",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"build": "NODE_ENV=production webpack",
"build:analyze": "NODE_ENV=production webpack --analyze",
"build:clean": "rm -f public/{index.html,redota*}",
"build:protos": "pbjs -t static-module --no-create --no-encode --no-verify --no-convert --no-comments -w commonjs dota/*.proto | uglifyjs -cm --keep-fnames > dota/compiled.cjs",
"build:publish": "git subtree push --prefix public origin gh-pages",
"lint": "eslint . --ext js,jsx,cjs",
"parse": "bin/parse.js",
"parse:vrman": "bin/parse-vrman.js",
"prepare": "husky",
"start:dev": "webpack serve",
"sync:pro-players": "bin/sync-pro-players.js",
"sync:protos": "bin/sync-protos.js",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"dependencies": {
"@loadable/component": "^5.14.1",
"axios": "^0.28.0",
"buffer": "^6.0.1",
"dexie": "^3.1.0-alpha.8",
"dexie-observable": "^3.0.0-beta.10",
"dexie-react-hooks": "^1.0.6",
"dotaconstants": "^8.11.0",
"mobx": "^6.0.4",
"mobx-react-lite": "^3.1.6",
"protobufjs": "^6.11.4",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-hotkeys-hook": "^3.3.1",
"react-router-dom": "^5.2.0",
"seek-bzip": "^2.0.0",
"snappyjs": "^0.6.0",
"styled-components": "^5.2.1",
"use-async-effect": "^2.2.3"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@commitlint/cli": "^19.0.1",
"@commitlint/config-conventional": "^11.0.0",
"@timkurvers/eslint-config": "^2.1.0",
"babel-loader": "^8.1.0",
"eslint": "^7.12.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"html-webpack-plugin": "^4.5.2",
"husky": "^9.1.5",
"jest": "^26.6.3",
"uglify-js": "^3.11.5",
"webpack": "^5.76.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0",
"worker-loader": "^3.0.8"
}
}