-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.14 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.14 KB
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
{
"name": "client-side-prediction",
"version": "1.0.0",
"description": "Simple app demonstrating client side prediction.",
"repository": "https://github.com/impguard/client-side-prediction",
"author": "kwu <contact@kevinwu.io>",
"private": true,
"scripts": {
"build": "webpack --config webpack.prod.js",
"start": "webpack-dev-server --open --config webpack.dev.js",
"lint": "tslint --project tsconfig.json --config tslint.json src/**/*.tsx"
},
"license": "MIT",
"dependencies": {
"@types/lodash": "^4.14.108",
"@types/react": "^16.3.14",
"@types/react-dom": "^16.0.5",
"@types/three": "^0.91.13",
"@types/uuid": "^3.4.3",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^0.28.11",
"html-webpack-plugin": "^3.2.0",
"lodash": "^4.17.10",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"style-loader": "^0.21.0",
"three": "^0.92.0",
"ts-loader": "^4.3.0",
"tslint": "^5.10.0",
"tslint-react": "^3.6.0",
"typescript": "^2.8.3",
"uuid": "^3.2.1",
"webpack": "^4.8.2",
"webpack-cli": "^2.1.3",
"webpack-dev-server": "^3.1.4",
"webpack-merge": "^4.1.2"
}
}