-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.39 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": "boudaries",
"version": "1.0.0",
"description": "Playing with Threejs and Cannonjs",
"main": "./build/index.html",
"source": "./src/app.js",
"engines": {
"node": "18.9.1",
"npm": "8.19.1"
},
"scripts": {
"start": "node ./node_modules/.bin/webpack serve --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"serve": "npx serve public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iondrimba/threejs-starter.git"
},
"author": "Ion Drimba Filho",
"license": "ISC",
"bugs": {
"url": "https://github.com/iondrimba/threejs-starter/issues"
},
"homepage": "https://github.com/iondrimba/threejs-starter#readme",
"dependencies": {
"cannon-es": "^0.20.0",
"cannon-es-debugger": "^1.0.0",
"gsap": "^3.6.1",
"stats-js": "^1.0.1",
"three": "^0.144.0",
"tweakpane": "^2.4.3"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.1",
"babel-loader": "^8.2.2",
"babel-polyfill": "^6.6.1",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^8.1.1",
"css-loader": "^5.2.4",
"esbuild-loader": "^2.13.0",
"html-webpack-plugin": "^5.2.0",
"mini-css-extract-plugin": "^1.6.0",
"style-loader": "^2.0.0",
"webpack": "^5.31.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.7.3"
}
}