-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.43 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
{
"name": "Frogger",
"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",
"format": "prettier --write 'app/**/*.js' && yarn run lint",
"precommit": "lint-staged",
"lint": "eslint app/**/*.js --fix",
"open": "node -e \"require('xopen')('http://localhost:8081/vr/')\"",
"devtools": "react-devtools",
"test": "jest"
},
"dependencies": {
"babel-eslint": "^8.0.2",
"eslint": "^4.12.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.8.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.5.1",
"husky": "^0.14.3",
"lint-staged": "^5.0.0",
"ovrui": "~1.4.0",
"prettier": "^1.8.2",
"react": "~15.4.1",
"react-native": "~0.42.0",
"react-vr": "~1.4.0",
"react-vr-web": "~1.4.0",
"three": "^0.80.1"
},
"devDependencies": {
"babel-jest": "^19.0.0",
"babel-preset-react-native": "^1.9.1",
"jest": "^19.0.2",
"react-devtools": "^2.1.3",
"react-test-renderer": "~15.4.1",
"xopen": "1.0.0"
},
"jest": {
"preset": "react-vr"
},
"lint_staged": {
"*.{js,json,css}": [
"prettier --write",
"git add"
]
}
}