forked from italia/18app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.79 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
52
53
54
55
56
57
58
59
60
{
"name": "18app",
"version": "0.1.0",
"private": true,
"devDependencies": {
"@improntaadvance/eslint-config": "^0.8.2",
"babel-eslint": "^7.2.3",
"babel-preset-expo": "^4.0.0",
"detox": "^5.9.2",
"detox-expo-helpers": "^0.2.0",
"eslint": ">=4.3.0",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-prettier": "^2.2.0",
"eslint-plugin-react": "^7.1.0",
"jest-expo": "^21.0.2",
"mocha": "^4.0.1",
"prettier": "^1.5.3",
"react-native-scripts": "1.5.0",
"react-test-renderer": "16.0.0-alpha.12"
},
"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",
"e2e": "detox test --configuration ios.sim -d",
"postinstall": "mkdir -p bin/expo.app && curl https://dpq5q02fu5f55.cloudfront.net/Exponent-2.0.1.tar.gz | tar -C bin/expo.app/ -xz"
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"expo": "^21.0.0",
"moment": "^2.19.1",
"react": "16.0.0-alpha.12",
"react-native": "^0.48.4",
"react-native-circular-progress": "^0.0.8",
"react-native-percentage-circle": "^1.0.6",
"react-navigation": "^1.0.0-beta.13",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-define": "^1.1.1",
"redux-promise-middleware": "^4.4.1",
"redux-thunk": "^2.2.0"
},
"detox": {
"configurations": {
"ios.sim": {
"binaryPath": "bin/expo.app",
"type": "ios.simulator",
"name": "iPhone 5s"
}
}
}
}