-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.74 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "myapp",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "ENVFILE=.env.development react-native run-android",
"build:android": "cd android && ENVFILE=.env.production ./gradlew assembleRelease",
"pod": "cd ios && pod install && cd ..",
"ios": "ENVFILE=.env.development react-native run-ios --simulator 'iPhone X'",
"start": "react-native start",
"test": "BABEL_ENV=test jest --no-cache",
"lint": "tslint --project tsconfig.json",
"lint:fix": "tslint --project tsconfig.json --fix",
"tslint-check": "tslint-config-prettier-check ./tslint.json",
"prettier": "prettier --write \"{,!(node_modules|dist|android|ios|build|builds)/**/}*.{js,jsx,ts,tsx}\"",
"pre-commit": "npm run lint:fix && npm run prettier"
},
"dependencies": {
"@react-native-community/async-storage": "^1.6.2",
"@types/jest": "^24.0.22",
"@types/react-native": "^0.60.21",
"@types/react-test-renderer": "^16.9.1",
"axios": "^0.19.0",
"i18n-js": "^3.3.0",
"immer-reducer": "^0.7.9",
"lodash": "^4.17.15",
"prettier-tslint": "^0.4.2",
"react": "16.9.0",
"react-native": "0.61.2",
"react-native-config": "^0.12.0",
"react-native-gesture-handler": "^1.5.0",
"react-native-vector-icons": "^6.6.0",
"react-navigation": "^4.0.10",
"react-redux": "7.1.0",
"redux": "4.0.4",
"redux-logger": "^3.0.6",
"redux-mock-store": "1.5.3",
"redux-persist": "^6.0.0",
"redux-saga": "1.0.5",
"redux-saga-test-plan": "4.0.0-beta.4",
"redux-thunk": "^2.3.0",
"ts-get": "^1.0.5",
"typesafe-actions": "4.4.2"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/runtime": "^7.6.3",
"@react-native-community/eslint-config": "^0.0.5",
"@types/enzyme": "^3.10.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/i18n-js": "^3.0.1",
"@types/lodash": "^4.14.146",
"@types/react": "^16.9.9",
"@types/react-redux": "^7.1.5",
"@types/redux-logger": "^3.0.7",
"@types/redux-persist": "^4.3.1",
"babel-jest": "^24.9.0",
"babel-plugin-module-resolver": "^3.2.0",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.14.0",
"eslint": "^6.5.1",
"husky": "^3.1.0",
"jest": "^24.9.0",
"metro-react-native-babel-preset": "^0.56.0",
"pre-commit": "^1.2.2",
"prettier": "^1.19.0",
"react-dom": "^16.10.2",
"react-native-testing-library": "^1.11.1",
"react-test-renderer": "16.9.0",
"ts-jest": "^24.1.0",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-no-circular-imports": "^0.7.0",
"tslint-react": "^4.1.0",
"typescript": "^3.7.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run pre-commit"
}
}
}