-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 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
{
"name": "sg-3d-previewer",
"version": "1.1.0",
"description": "SG 3D Previewer",
"main": "index.js",
"scripts": {
"start": "node ./serve/bin/www",
"dev": "webpack --config webpack.dev.js",
"build": "webpack --config webpack.prod.js"
},
"keywords": [
"Shotgun",
"Web Application"
],
"author": "Takanori Kishikawa",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@webpack-cli/init": "^1.0.2",
"babel-loader": "^8.1.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.0",
"express-generator": "^4.16.1",
"html-webpack-plugin": "^4.5.0",
"sass": "^1.28.0",
"sass-loader": "^10.0.5",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.0.3",
"webpack": "^5.3.2",
"webpack-cli": "^4.1.0",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.3.0"
},
"dependencies": {
"express": "^4.17.1",
"three": "^0.122.0"
}
}