forked from SaltieRL/WebReplayViewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.43 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
{
"name": "replay-viewer",
"version": "0.9.0",
"description": "Rocket League replay viewer React component and tooling",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"postinstall": "npm run submodule:init && cd docs && npm install",
"clean": "rimraf _bundles lib",
"lint": "tslint src/**/*.ts{,x} -p tsconfig.json",
"build": "npm run clean && npm run build:tsc && npm run build:bundle && npm run build:copy",
"build:tsc": "tsc",
"build:bundle": "npx webpack",
"build:copy": "node copy.js",
"start": "cd docs && npm run start",
"link": "npm link && cd docs && npm link replay-viewer",
"submodule": "git submodule update --remote",
"submodule:init": "git submodule update --init --remote",
"publish:lib": "cd lib && npm publish",
"prepublishOnly": "echo 'Do not publish from root. Publish from lib'; exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SaltieRL/WebReplayViewer.git"
},
"keywords": [
"Rocket",
"League",
"Replay",
"React",
"Three",
"WebGL"
],
"author": "SaltieRL",
"license": "MIT",
"bugs": {
"url": "https://github.com/SaltieRL/WebReplayViewer/issues"
},
"homepage": "https://github.com/SaltieRL/WebReplayViewer#readme",
"peerDependencies": {
"@material-ui/core": "^4.9.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"three": "^0.139.0"
},
"dependencies": {
"lodash.debounce": "^4.0.8",
"moment": "^2.29.1",
"pngjs": "^6.0.0",
"react-full-screen": "^1.1.0",
"rl-loadout-lib": "^0.6.0",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@material-ui/core": "^4.9.7",
"@types/lodash.debounce": "^4.0.6",
"@types/node": "^17.0.23",
"@types/react": "^17.0.43",
"@types/styled-components": "^5.1.24",
"@types/three": "^0.139.0",
"babel-loader": "^8.2.4",
"babel-plugin-dynamic-import-webpack": "^1.1.0",
"file-loader": "^6.2.0",
"fs-extra": "^10.0.1",
"lodash.camelcase": "^4.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"three": "^0.139.0",
"typescript": "^4.6.3",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
}
}