-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
51 lines (51 loc) · 1.99 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
{
"name": "horizon-game-kit-a",
"version": "0.0.0",
"license": "MIT",
"private": false,
"main": "build/index.js",
"description": "A handful of useful utilities for making Threejs games/demos",
"repository": "https://github.com/horizon-games/game-kit-a",
"scripts": {
"start": "yarn dev",
"dev": "webpack-dev-server --mode development --progress --color --config config/webpack/webpack.config.local.js",
"lint": "yarn run lint:tslint && yarn run lint:prettier",
"lint:fix": "yarn run lint:fixtslint && yarn run lint:fixprettier",
"lint:tslint": "tslint -c tslint.json $(find src -type f -name *.ts -o -name *.tsx)",
"lint:prettier": "prettier-check --config ./.prettierrc $(find src -type f -name *.ts -o -name *.tsx)",
"lint:fixprettier": "prettier --config ./.prettierrc --write $(find src -type f -name *.ts -o -name *.tsx)",
"lint:fixtslint": "tslint -c tslint.json --fix $(find src -type f -name *.ts -o -name *.tsx)"
},
"dependencies": {
"@types/offscreencanvas": "^2019.6.0",
"three": "^0.109.0",
"three-bmfont-text": "^2.3.0",
"threejs-camera-controller-first-person-desktop": "^5.0.1"
},
"devDependencies": {
"dotenv": "^8.2.0",
"fork-ts-checker-webpack-plugin": "^1.5.1",
"glslify-import-loader": "^0.1.2",
"glslify-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"prettier": "^1.18.2",
"prettier-check": "^2.0.0",
"serve": "^11.2.0",
"source-map-loader": "^0.2.4",
"terser-webpack-plugin": "^2.1.3",
"ts-loader": "^6.2.0",
"ts-node": "^8.4.1",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"tslint-language-service": "^0.9.9",
"tslint-lines-between-class-members": "^1.3.6",
"typescript": "^3.6.4",
"typescript-styled-plugin": "^0.15.0",
"webpack": "^4.41.2",
"webpack-assets-by-type-plugin": "^0.1.0",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2"
}
}