-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·47 lines (47 loc) · 2.2 KB
/
package.json
File metadata and controls
executable file
·47 lines (47 loc) · 2.2 KB
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
{
"name": "threejs-boilerplate",
"version": "3.0.0",
"repository": "fazeaction/threejs-boilerplate",
"scripts": {
"dev": "vite --host",
"build": "vite build",
"preview": "vite preview",
"canvas-sketch-dev": "canvas-sketch sketch.js -- -t [ babelify --global --plugins [ '@babel/plugin-transform-modules-commonjs' ] ]",
"canvas-sketch-build": "canvas-sketch sketch.js --force --name index --dir dist --build --source-map false -- -t [ babelify --global --plugins [ '@babel/plugin-transform-modules-commonjs' ] ] && recursive-copy --overwrite static dist/static",
"fxhash-canvas-sketch-dev": "canvas-sketch sketch-fxhash.js --html=./src/html/fxhash-index.html -- -t [ babelify --global --plugins [ '@babel/plugin-transform-modules-commonjs' ] ]",
"fxhash-canvas-sketch-build": "del dist/** && canvas-sketch sketch-fxhash.js --force --html=./src/html/fxhash-build.html --name index --dir dist --build --source-map false -- -t [ babelify --global --plugins [ '@babel/plugin-transform-modules-commonjs' ] ] && recursive-copy --overwrite static dist/static && recursive-copy --overwrite src/css/main.css dist/main.css && cd dist/ && jszip-cli add * --output=../dist-zipped/project.zip --force"
},
"license": "WTFPL",
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/plugin-transform-modules-commonjs": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@ffflorian/jszip-cli": "^3.1.6",
"add": "^2.0.6",
"autoprefixer": "^10.4.0",
"babelify": "^10.0.0",
"bestzip": "^2.2.0",
"del-cli": "^4.0.1",
"postcss-import": "^14.0.2",
"postcss-url": "^10.1.3",
"vite": "^2.6.14",
"vite-plugin-glslify": "^1.4.1",
"yarn": "^1.22.17"
},
"dependencies": {
"@babel/runtime": "^7.16.7",
"@superguigui/wagner": "git+https://github.com/fazeaction/Wagner.git#master",
"@zhouzi/archiver-cli": "^0.1.0",
"canvas-sketch": "^0.7.4",
"glsl-checker": "^1.0.1",
"glsl-noise": "0.0.0",
"move-file-cli": "^3.0.0",
"recursive-copy-cli": "^1.0.20",
"three": "^0.135.0",
"three.fbo-helper": "^1.1.1",
"tweakpane": "^3.0.7",
"webvr-polyfill": "^0.10.12",
"webvr-ui": "^0.10.0"
}
}