-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
47 lines (47 loc) · 1.21 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
44
45
46
47
{
"name": "aframe-next-static",
"version": "1.0.0",
"description": "Boilerplate for building virtual reality experiences with A-Frame and Nextjs.",
"dependencies": {
"acorn": "^6.0.5",
"aframe": "^0.9.0",
"aframe-animation-component": "^3.2.5",
"aframe-particle-system-component": "^1.0.8",
"aframe-react": "4.3.0",
"lodash": "^4.17.11",
"next": "^8.0.3",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"static": "next export",
"build:static": "next build && next export",
"deploy": "npm run build:static && cd out && now -n aframe-next-static"
},
"repository": {
"type": "git",
"url": "git+https://github.com/michaltakac/aframe-next-static.git"
},
"keywords": [
"aframe",
"react",
"vr",
"boilerplate",
"a-frame",
"nextjs",
"reactvr",
"aframe-react",
"webvr",
"static"
],
"author": "Michal Takac <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/michaltakac/aframe-next-static/issues"
},
"homepage": "https://github.com/michaltakac/aframe-next-static#readme"
}