-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.54 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
{
"name": "3d-spatial-partitioning",
"version": "1.0.0",
"description": "A 3D Boids implementation to demonstrate Spatial Partitioning implemented with an Octree.",
"main": "index.js",
"scripts": {
"start": "webpack serve --config webpack.dev.js",
"build": "NODE_ENV=production webpack --config webpack.prod.js",
"lint": "eslint --cache \"src/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint --cache --fix \"src/**/*.{js,jsx,ts,tsx}\""
},
"author": "N. van Urk",
"license": "MIT",
"repository": "[email protected]/nickyvanurk/3d-spatial-partitioning.git",
"bugs": "https://github.com/nickyvanurk/3d-spatial-partitioning/issues",
"homepage": "https://github.com/nickyvanurk/3d-spatial-partitioning#readme",
"devDependencies": {
"@types/dat.gui": "^0.7.7",
"@types/three": "^0.148.1",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-webpack-plugin": "^4.0.0",
"fork-ts-checker-webpack-plugin": "^7.3.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.7.2",
"prettier": "^2.8.4",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"ts-shader-loader": "^2.0.2",
"webpack": "^5.76.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"dat.gui": "^0.7.9",
"three": "^0.149.0"
}
}