forked from brunosimon/folio-2019
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.19 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
41
42
{
"name": "three.js-template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"predev": "npm run clean",
"dev": "parcel src/index.html -p 1234 --open",
"prebuild": "npm run clean",
"build": "parcel build src/index.html --out-dir ./dist --public-url . --detailed-report",
"clean": "shx rm -rf dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brunosimon/three.js-template.git"
},
"author": "brunosimon",
"license": "MIT",
"bugs": {
"url": "https://github.com/brunosimon/three.js-template/issues"
},
"homepage": "https://github.com/brunosimon/three.js-template#readme",
"devDependencies": {
"cannon": "^0.6.2",
"dat.gui": "^0.7.3",
"glslify-bundle": "^5.1.1",
"glslify-deps": "^1.3.1",
"gsap": "^2.1.3",
"howler": "^2.1.2",
"parcel-bundler": "^1.12.3",
"parcel-plugin-asset-copier": "^1.0.0",
"parcel-plugin-static-files-copy": "^2.1.2",
"shx": "^0.3.2",
"three": "git+https://github.com/Samsy/threenext.git"
},
"staticFiles": {
"staticPath": "static",
"watcherGlob": "**"
},
"dependencies": {}
}