-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·33 lines (33 loc) · 917 Bytes
/
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
{
"name": "conwayGameOfLife",
"version": "0.1.0",
"private": true,
"devDependencies": {
"eslint-config-rallycoding": "^3.2.0",
"jest": "^21.2.1",
"jest-expo": "^22.0.0",
"react-native-scripts": "1.7.0"
},
"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"
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"@expo/vector-icons": "^6.2.0",
"expo": "^22.0.2",
"jest-cli": "^21.2.1",
"native-base": "^2.3.3",
"react": "^16.3.1",
"react-native": "^0.55.3",
"react-native-fs": "^2.9.2",
"react-native-router-flux": "^4.0.0-beta.24",
"react-native-vector-icons": "^4.4.2"
}
}