forked from ektogamat/drill-webgi-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.12 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
43
{
"name": "threejs-gsap-webgi-course",
"version": "1.0.0",
"description": "WebGi + TypeScript example starter project",
"main": "index.html",
"author": {
"name": "Anderson Mancini",
"email": "andersonmancini30@gmail.com",
"url": "https://twitter.com/Andersonmancini/"
},
"scripts": {
"start": "parcel index.html",
"build": "parcel build index.html --no-minify --public-url ./",
"deploy": "vercel --prod"
},
"devDependencies": {
"@types/three": "^0.139.0",
"parcel-bundler": "^1.6.1",
"parcel-plugin-static-files-copy": "^2.6.0",
"typescript": "4.4.4",
"@types/webgi": "https://storage.googleapis.com/dist.pixotronics.com/webgi/runtime/bundle-types-0.5.5.tgz",
"webgi": "https://storage.googleapis.com/dist.pixotronics.com/webgi/runtime/bundle-0.5.5.tgz"
},
"resolutions": {
"@babel/preset-env": "7.13.8"
},
"keywords": [
"typescript",
"javascript"
],
"staticFiles": {
"staticPath": [
{
"staticPath": "assets",
"staticOutDir": "assets"
}
]
},
"dependencies": {
"gsap": "^3.11.1",
"vercel": "^28.4.5"
}
}