-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 2.34 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 2.34 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
{
"name": "gw-installation",
"version": "0.1.0",
"description": "",
"repository": "github:StudioProcess/gw-installation",
"engines": {
"node": ">=16.17.0",
"npm": ">=8.19.1"
},
"scripts": {
"start": "browser-sync start --server --port 8080 --no-notify --no-ghost-mode --files index.html app --browser 'google chrome'",
"test": "echo \"Error: no test specified\" && exit 1",
"reinstall": "rm -rf node_modules && npm install",
"hash": "./hash.sh",
"copy-vendor-scripts": "mkdir -p vendor; cp ./node_modules/es-module-shims/dist/es-module-shims.js vendor; cp ./node_modules/three/build/three.module.js vendor; cp ./node_modules/three/examples/jsm/controls/OrbitControls.js vendor; cp ./node_modules/lil-gui/dist/lil-gui.esm.js vendor; cp ./node_modules/stats.js/src/Stats.js vendor",
"preinstall": "npm run copy-vendor-scripts",
"prestart": "npm run copy-vendor-scripts",
"clean": "find dist -not -path dist -delete 2> /dev/null",
"build": "rsync -a ./ dist/ --exclude='dist' --exclude='node_modules' --exclude='sign' --exclude='verify' --exclude='.git' --exclude='.nova' --exclude='.DS_Store' --exclude='.eslintrc.json' --exclude='.gitignore' --exclude='README.md'; sed -i'.orig' -e \"s/ENV: \\x27development\\x27/ENV: \\x27production\\x27/g;s/### BUILD_DATE ###/$(date)/g\" 'dist/app/env.js'; rm -f dist/app/env.js.orig",
"zip-build": "cd dist; rm -f waves-*.zip; zip waves-$(cat signature.timestamp | tr : -).zip ./*; cd ..",
"prebuild": "npm run copy-vendor-scripts; npm run sign",
"postbuild": "npm run sign-build; npm run zip-build",
"sign": "./sign/sign_node.mjs --update --ignore '.git/**,.nova/**,node_modules/**,dist/**,sign/**,verify/**,sign_test/**,.gitignore,.htaccess,README.md'",
"sign-verify": "./sign/sign_node.mjs --update ./verify",
"sign-build": "./sign/sign_node.mjs ./dist",
"verify": "./sign/verify_node.mjs",
"verify-verify": "./sign/verify_node.mjs ./verify",
"verify-build": "./sign/verify_node.mjs ./dist"
},
"keywords": [],
"author": "Martin Grödl <martin@process.studio> (https://process.studio)",
"license": "AGPL-3.0",
"dependencies": {
"es-module-shims": "^1.7.2",
"lil-gui": "^0.18.1",
"stats.js": "^0.17.0",
"three": "^0.150.1"
},
"devDependencies": {
"browser-sync": "^2.29.1",
"glob": "^10.2.2",
"path-sort": "^0.1.0"
}
}