-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
34 lines (34 loc) · 889 Bytes
/
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
{
"name": "pong-js",
"version": "0.0.1",
"description": "JS implimentation of a Pong game engine.",
"private": true,
"main": "dist/index.js",
"scripts": {
"start": "webpack-dev-server --open",
"watch": "webpack --watch",
"build": "webpack",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dotproto/pong-js.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/dotproto/pong-js/issues"
},
"homepage": "https://github.com/dotproto/pong-js#readme",
"devDependencies": {
"typescript": "^2.9.2"
},
"dependencies": {
"@tensorflow/tfjs": "^0.12.0",
"clean-webpack-plugin": "^0.1.19",
"html-webpack-plugin": "^3.2.0",
"ts-loader": "^4.4.2",
"webpack": "^4.14.0",
"webpack-cli": "^2.1.5",
"webpack-dev-server": "^3.1.4"
}
}