forked from rendercodeninja/automotive-configurator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 947 Bytes
/
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
{
"name": "webgl-car-config",
"version": "1.0.0",
"description": "WebGL based car configurator using threeJS",
"main": "app.js",
"scripts": {
"dev": "webpack serve",
"build": "webpack",
"build-css": "node-sass src/sass/style.scss src/static/css/style.css --output-style compressed"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RendercodeNinja/automotive-configurator.git"
},
"author": "Sethu Raj",
"license": "MIT",
"bugs": {
"url": "https://github.com/RendercodeNinja/automotive-configurator/issues"
},
"homepage": "https://github.com/RendercodeNinja/automotive-configurator#readme",
"dependencies": {
"@tweenjs/tween.js": "^18.6.4",
"jquery": "^3.6.0",
"three": "^0.132.2"
},
"devDependencies": {
"copy-webpack-plugin": "^9.0.1",
"node-sass": "^8.0.0",
"webpack": "^5.53.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.2.1"
}
}