-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 827 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 827 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
{
"name": "hackcamp-react-native",
"version": "0.1.0",
"private": true,
"devDependencies": {
"jest-expo": "^0.3.0",
"react-native-scripts": "0.0.26",
"react-test-renderer": "~15.4.1",
"typescript": "^2.2.2"
},
"main": "./node_modules/react-native-scripts/build/bin/crna-entry.js",
"scripts": {
"start": "react-native-scripts start",
"eject": "react-native-scripts eject",
"android": "react-native-scripts android",
"ios": "react-native-scripts ios",
"test": "node node_modules/jest/bin/jest.js --watch",
"build": "tsc -w"
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"@shoutem/ui": "^0.12.0",
"@types/react": "^15.0.21",
"@types/react-native": "^0.42.14",
"expo": "^15.1.0",
"react": "~15.4.0",
"react-native": "0.42.3"
}
}