-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 848 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 848 Bytes
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
{
"name": "ah-react-native",
"version": "0.1.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/actionhero/actionhero-react-native-example.git"
},
"scripts": {
"start": "react-native start",
"android": "react-native run-android",
"ios": "react-native run-ios",
"test": "jest",
"pretest": "standard"
},
"jest": {
"preset": "react-native"
},
"dependencies": {
"native-base": "^2.3.1",
"primus": "^7.3.4",
"react": "^16.0.0",
"react-native": "^0.56.0"
},
"devDependencies": {
"babel-preset-react-native-stage-0": "^1.0.1",
"jest": "^22.0.0",
"react-test-renderer": "^16.0.0",
"standard": "^14.2.0"
},
"standard": {
"ignore": [
"lib"
],
"globals": [
"WebSocket",
"it",
"expect"
]
}
}