-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.34 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.34 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
45
46
47
48
49
50
51
52
{
"name": "react-360-ts",
"author": "Kevin O'Rourke <orourke.kevin@gmail.com>",
"description": "Utilities & helpers for increased type safety in a React + Redux application",
"version": "1.0.0",
"license": "ISC",
"keywords": [
"react",
"360",
"vr",
"boilerplate",
"ts",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/orourkek/react-360-ts.git"
},
"bugs": {
"url": "https://github.com/orourkek/react-360-ts/issues"
},
"scripts": {
"start": "node node_modules/react-360/scripts/packager.js",
"bundle": "node node_modules/react-360/scripts/bundle.js",
"open": "node -e \"require('xopen')('http://localhost:8081/index.html')\"",
"devtools": "react-devtools",
"test": "jest"
},
"dependencies": {
"react": "16.3.2",
"react-360": "~1.1.0",
"react-360-web": "~1.1.0",
"react-native": "~0.55.4",
"three": "^0.87.0"
},
"devDependencies": {
"@types/react": "^16.8.12",
"@types/react-native": "^0.57.42",
"babel-jest": "^19.0.0",
"babel-preset-react-native": "^1.9.1",
"jest": "^19.0.2",
"react-devtools": "^2.5.2",
"react-native-typescript-transformer": "^1.2.12",
"react-test-renderer": "16.0.0",
"tslint": "^5.15.0",
"typescript": "^3.4.1",
"xopen": "1.0.0"
},
"jest": {
"preset": "react-360"
}
}