-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 926 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
{
"name": "threejs-laboratory",
"version": "1.0.0",
"description": "ThreeJs入门示例",
"main": "dist/js/main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "if exist .\\dist\\js ( del .\\dist\\js\\main.js* /q /f /s )",
"prebuild": "npm run clean",
"build": "webpack --config ./config/webpack.prod.js",
"postbuild": "start Explorer .\\dist",
"predev": "npm run clean",
"dev": "webpack serve --config ./config/webpack.dev.js"
},
"author": "SoftPx",
"license": "ISC",
"devDependencies": {
"javascript-obfuscator": "^2.13.0",
"webpack": "^5.37.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2",
"webpack-obfuscator": "^3.3.1"
},
"dependencies": {
"glsl-noise": "0.0.0",
"glslify": "^7.1.1",
"layui": "^2.6.8"
}
}