-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 919 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 919 Bytes
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
{
"name": "ant-simulator",
"version": "1.0.0",
"description": "ant simulator game",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prestart:dev": "npm i",
"start:dev": "webpack && webpack-dev-server",
"lint": "tslint -p ./tslint.json"
},
"author": "Oscar Lodriguez",
"license": "ISC",
"devDependencies": {
"awesome-typescript-loader": "^5.2.1",
"copy-webpack-plugin": "^4.6.0",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^4.6.0",
"json-loader": "^0.5.7",
"prettier": "^1.15.3",
"ts-node": "^7.0.1",
"tslint": "^5.12.0",
"typescript": "^3.2.2",
"webpack": "^4.28.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {
"@tensorflow/tfjs": "^0.15.1"
}
}