-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.74 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
52
53
54
55
56
57
{
"name": "smooth-dragon",
"version": "1.0.1",
"description": "WebGL app using Threejs for surface smoothing, libgptjs as submodule",
"main": "index.js",
"author": "Giovanny Javier Tipantuña Toapanta <[email protected]> (https://www.linkedin.com/in/giovanny-javier-tipantuna-toapanta/)",
"license": "MIT",
"keywords": [
"three",
"webgl",
"computer-graphics",
"texture-mapping",
"webpack"
],
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --config config/webpack.dev.js",
"build": "cross-env NODE_ENV=production webpack --config config/webpack.prod.js"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"three": "^0.151.0",
"three-nebula": "^10.0.3"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/node": "^7.14.9",
"@babel/preset-env": "^7.15.0",
"@types/dat.gui": "^0.7.7",
"@types/node": "^17.0.35",
"@webpack-cli/serve": "^1.6.1",
"async": "3.2.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.5",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"cssnano": "5.1.9",
"dat.gui": "^0.7.9",
"eslint": "^7.32.0",
"eslint-loader": "^4.0.2",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^0.9.0",
"postcss-loader": "^7.0.0",
"postcss-preset-env": "^7.6.0",
"sass": "1.52.1",
"sass-loader": "^13.0.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^2.3.5",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0",
"webpack-merge": "^5.8.0"
}
}