forked from SaltieRL/WebReplayViewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.37 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
{
"name": "replay-viewer",
"version": "0.7.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",
"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.6.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"three": "^0.110.0"
},
"dependencies": {
"lodash.debounce": "^4.0.8",
"moment": "^2.24.0",
"pngjs": "^3.4.0",
"react-full-screen": "^0.2.4",
"rl-loadout-lib": "^0.4.2",
"styled-components": "^4.4.1"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"@babel/preset-typescript": "^7.7.2",
"@material-ui/core": "^4.6.1",
"@types/lodash.debounce": "^4.0.6",
"@types/node": "^12.12.11",
"@types/react": "^16.9.11",
"@types/styled-components": "^4.4.0",
"babel-loader": "^8.0.6",
"babel-plugin-dynamic-import-webpack": "^1.1.0",
"file-loader": "^4.2.0",
"fs-extra": "^8.1.0",
"lodash.camelcase": "^4.3.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"rimraf": "^3.0.0",
"three": "^0.110.0",
"tslint": "^5.20.1",
"tslint-react": "^4.1.0",
"typescript": "^3.7.2",
"webpack": "^4.41.1",
"webpack-cli": "^3.3.10"
}
}