-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
30 lines (30 loc) · 919 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
30
{
"name": "renderfusion-playground",
"description": "Simulate split rendering on the Web!",
"version": "1.0.0",
"license": "BSD-3-Clause",
"browserslist": [
"last 2 firefox versions"
],
"dependencies": {
"dat.gui": "^0.7.9",
"express": "^4.18.2",
"ip": "^1.1.5",
"live-server": "^1.1.0",
"three-mesh-ui": "^6.5.3"
},
"devDependencies": {
"@parcel/transformer-glsl": "^2.9.3",
"constants-browserify": "^1.0.0",
"parcel": "^2.8.3"
},
"scripts": {
"start": "live-server --port=5500 --watch=index.html,src/ --wait=200 --quiet --no-browser --https=https.conf.js",
"watch": "parcel watch src/index.js",
"build": "parcel build src/index.js --public-url ./dist"
},
"repository": {
"type": "git",
"url": "[email protected]:EdwardLu2018/renderfusion-playground.git"
}
}