-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 915 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": "game-engine",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"example": "example"
},
"scripts": {
"start": "node serve-examples.js",
"postinstall": "node_modules/.bin/webpack",
"lint": "node_modules/.bin/tslint src/*.ts src/**/*.ts test/*.ts test/**/*.ts",
"lint:fix": "node_modules/.bin/tslint src/*.ts src/**/*.ts test/*.ts test/**/*.ts --fix",
"bundle": "node_modules/.bin/webpack",
"bundle:watch": "node_modules/.bin/webpack -w"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cannon": "^0.1.3",
"cannon": "^0.6.2",
"ts-loader": "^5.3.3",
"tslint": "^5.12.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.2.2",
"webpack": "^4.29.1",
"webpack-cli": "^3.2.1"
},
"dependencies": {
"express": "^4.16.4",
"webgl-obj-loader": "^2.0.3"
}
}