-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.76 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
{
"name": "tower-blocks",
"description": "a game for tower blocks",
"version": "1.0.0",
"author": "DavidJones <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:DavidKk/tower-blocks.git"
},
"pre-commit": [
"lint-staged"
],
"lint-staged": {
"*.{ts,tsx}": [
"npm run lint",
"git add"
]
},
"scripts": {
"lint-staged": "lint-staged",
"tslint": "tslint --config ./tslint.json --fix './src/**/*.ts' './bundler/**/*.ts'",
"lint": "npm run tslint",
"test": "npm run lint",
"bundler": "tsc --project ./bundler --outDir ./libs/bundler",
"compile": "rimraf ./app ./.cache && npm run bundler",
"develop": "npm run compile && node ./libs/bundler/index.js",
"release": "npm run compile && cross-env NODE_ENV=production node ./libs/bundler/index.js",
"start": "npm run develop"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/express": "^4.16.1",
"@types/fs-extra": "^7.0.0",
"@types/ip": "^1.1.0",
"@types/lodash": "^4.14.121",
"@types/node": "^11.10.5",
"@types/parcel-bundler": "^1.12.0",
"@types/portscanner": "^2.1.0",
"@types/stats.js": "^0.17.0",
"@types/three": "^0.93.22",
"autoprefixer": "^9.5.0",
"chalk": "^2.4.2",
"chokidar": "^3.0.0",
"cross-env": "^5.2.0",
"express": "^4.17.0",
"fs-extra": "^8.0.1",
"ip": "^1.1.5",
"lint-staged": "^7.2.2",
"parcel-bundler": "^1.11.0",
"portscanner": "^2.2.0",
"postcss-pxtorem": "^4.0.1",
"pre-commit": "^1.2.2",
"rimraf": "^2.6.3",
"sass": "^1.16.0",
"tslint": "^5.12.1",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.3.3"
},
"dependencies": {
"stats.js": "^0.17.0",
"three": "^0.102.0"
}
}