-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.48 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "journey-through-react-vr",
"description": "🕴 A journey through your favorite react libraries used in ReactVR",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node -e \"console.log('open browser at http://localhost:8081/vr/\\n\\n');\" && node node_modules/react-native/local-cli/cli.js start",
"bundle": "node node_modules/react-vr/scripts/bundle.js && cp -rf static_assets vr/build && cp -f vr/index.deploy.html vr/build/index.html",
"build": "yarn bundle",
"open": "node -e \"require('xopen')('http://localhost:8081/vr/')\"",
"devtools": "react-devtools",
"test": "echo ADD TESTS",
"lint": "eslint --ignore-path .gitignore .",
"readme": "emdaer && git add *.md .emdaer/.offline",
"precommit": "yarn lint && yarn readme",
"commitmsg": "commitlint -e $GIT_PARAMS"
},
"dependencies": {
"downshift": "^1.31.2",
"lodash": "^4.17.5",
"ovrui": "~2.0.0",
"prop-types": "^15.6.1",
"react": "16.0.0",
"react-motion": "^0.5.2",
"react-native": "~0.48.0",
"react-router": "^4.2.0",
"react-vr": "~2.0.0",
"react-vr-web": "~2.0.0",
"simple-raycaster": "^1.0.1",
"three": "^0.87.0",
"victory": "^0.25.6",
"wobbly": "^0.0.6"
},
"devDependencies": {
"@commitlint/cli": "^6.1.3",
"@commitlint/config-angular": "^6.1.3",
"@emdaer/cli": "^2.0.0",
"@emdaer/plugin-contributors-details-github": "^2.0.0",
"@emdaer/plugin-value-from-package": "^2.0.0",
"@emdaer/transform-prettier": "^2.0.0",
"@emdaer/transform-table-of-contents": "^2.0.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^19.0.0",
"babel-preset-react-native": "^1.9.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jest": "^21.15.0",
"eslint-plugin-react": "^7.7.0",
"husky": "^0.14.3",
"jest": "^19.0.2",
"metro-bundler": "^0.22.1",
"prettier": "^1.11.1",
"react-devtools": "^2.5.2",
"react-test-renderer": "16.0.0",
"xopen": "1.0.0"
},
"author": "Luke Herrington <luke@fourkitchens.com> (https://fourkitchens.com)",
"publishConfig": {
"access": "restricted"
},
"repository": {
"type": "git",
"url": "https://github.com/infiniteluke/journey-through-react-vr.git"
},
"bugs": {
"url": "https://github.com/infiniteluke/journey-through-react-vr/issues"
},
"engines": {
"node": ">=8.0.0"
},
"jest": {
"preset": "react-vr"
}
}