-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.05 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
{
"name": "Hello360",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node build-server.js",
"local": "node -e \"console.log('open browser at http://localhost:8081/index.html\\n\\n');\" && node node_modules/react-native/local-cli/cli.js start",
"bundle": "node node_modules/react-360/scripts/bundle.js",
"open": "node -e \"require('xopen')('http://localhost:8081/index.html')\"",
"devtools": "react-devtools",
"test": "jest",
"build": "rm -fr build && npm run bundle && rm -fr build/static_assets/ && cp -r static_assets/ build/static_assets",
"postinstall": "npm run build"
},
"dependencies": {
"node-static": "^0.7.10",
"react": "16.0.0",
"react-360": "~1.0.0",
"react-360-web": "~1.0.0",
"react-native": "~0.49.5",
"three": "^0.87.0"
},
"devDependencies": {
"babel-jest": "^19.0.0",
"babel-preset-react-native": "^1.9.1",
"jest": "^19.0.2",
"react-devtools": "^2.5.2",
"react-test-renderer": "16.0.0",
"xopen": "1.0.0"
},
"jest": {
"preset": "react-360"
}
}