generated from paul-boegelsack/babylonjs-project-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.45 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
{
"name": "babylon-rts-selection",
"version": "1.0.0",
"description": "Can be used to select meshes, like in an RTS-Game.",
"main": "index.js",
"scripts": {
"build": "npm run lint && cross-env NODE_ENV=production webpack",
"start": "webpack-dev-server --port 8080",
"lint": "eslint . --cache",
"test": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paul-boegelsack/babylon-rts-selection.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"browser": {
"fs": false,
"path": false
},
"devDependencies": {
"@babylonjs/inspector": "^4.2.1",
"@types/jest": "^27.0.3",
"@types/node": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"cross-env": "^7.0.3",
"eslint": "^8.3.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.4.0",
"prettier": "^2.5.1",
"ts-jest": "^27.0.7",
"ts-loader": "^9.2.6",
"typescript": "^4.5.4",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.2"
},
"dependencies": {
"@babylonjs/core": "^4.2.1"
},
"bugs": {
"url": "https://github.com/paul-boegelsack/babylon-rts-selection/issues"
},
"homepage": "https://github.com/paul-boegelsack/babylon-rts-selection#readme"
}