forked from facebookarchive/react-360
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (68 loc) · 1.99 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
{
"private": true,
"name": "react-360",
"version": "1.0.0",
"description": "A framework for building interactive 360 experiences with React",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/facebook/react-360.git"
},
"bugs": "https://github.com/facebook/react-360/issues",
"main": "Libraries/react-360.js",
"files": [
"jest/setup.js",
"jest-preset.json",
"lib-assets",
"Libraries",
"LICENSE",
"PATENTS",
"README.md",
"scripts"
],
"workspaces": [
"packages/*"
],
"peerDependencies": {
"react": "~16.0.0",
"react-native": "0.49.5"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-jest": "^17.0.2",
"babel-preset-react-native": "^1.9.0",
"cross-env": "^3.2.4",
"eslint": "^3.17.0",
"eslint-config-fbjs": "^1.1.1",
"eslint-config-prettier": "^1.7.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-flowtype": "^2.32.1",
"eslint-plugin-prettier": "^2.0.1",
"eslint-plugin-react": "^6.10.3",
"flow-bin": "0.63.1",
"jest": "^17.0.3",
"jsdom": "^9.10.0",
"prettier": "^1.0.0",
"react": "16.3.2",
"react-native": "0.55.4",
"three": "^0.87.0",
"three-gltf2-loader": "~1.2.0",
"yoga-layout": "1.9.3",
"@babel/cli": "7.2.3",
"@babel/core": "7.3.3",
"@babel/plugin-proposal-class-properties": "7.3.3",
"@babel/plugin-proposal-object-rest-spread": "7.3.2",
"@babel/plugin-transform-flow-strip-types": "7.2.3",
"@babel/preset-react": "7.0.0"
},
"scripts": {
"flow": "flow",
"lint": "eslint Libraries/ OVRUI/src/ ReactVR/ react-vr-cli/",
"prettier": "node node_modules/.bin/prettier --print-width 100 --single-quote --no-bracket-spacing --jsx-bracket-same-line --trailing-comma es5 --write \"{Libraries,OVRUI/src,react-vr-cli,ReactVR}/**/!(*.bundle).js\"",
"test": "jest --config jest/config-unit.json"
},
"dependencies": {
"create-react-class": "^15.6.0",
"prop-types": "^15.5.10"
}
}