-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.2 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.2 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": "ReactVRSample",
"version": "0.0.1",
"dependencies": {
"ovrui": "^1.1.0",
"react": "^15.6.1",
"react-native": "0.42.0",
"react-vr": "^1.1.0",
"react-vr-web": "^1.1.0",
"three": "^0.85.2"
},
"devDependencies": {
"babel-jest": "^20.0.3",
"babel-preset-react-native": "^2.0.0",
"gh-pages": "^1.0.0",
"husky": "^0.13.4",
"jest": "^20.0.4",
"lint-staged": "^3.6.1",
"prettier": "^1.4.4",
"react-devtools": "^2.1.3",
"react-test-renderer": "^15.6.1",
"xopen": "1.0.0"
},
"jest": {
"preset": "react-vr"
},
"lint-staged": {
"*.js": [
"prettier --write --single-quote true --trailing-comma all --print-width 80",
"git add"
]
},
"private": true,
"scripts": {
"bundle": "node node_modules/react-vr/scripts/bundle.js",
"deploy": "gh-pages -d vr/build",
"devtools": "react-devtools",
"open": "node -e \"require('xopen')('http://localhost:8081/vr/')\"",
"precommit": "lint-staged",
"prepush": "yarn bundle && yarn deploy",
"start": "node -e \"console.log('open browser at http://localhost:8081/vr/\\n\\n');\" && node node_modules/react-native/local-cli/cli.js start",
"test": "jest"
}
}