-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
55 lines (55 loc) · 1.41 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
{
"name": "VpnApp",
"version": "0.0.1",
"private": true,
"scripts": {
"lint": "eslint ./src",
"flow": "node_modules/.bin/flow",
"precommit": "npm run lint && npm run test",
"prepush": "npm run lint && npm run test",
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest"
},
"dependencies": {
"react": "16.4.1",
"react-native": "0.56",
"react-native-swiper": "^1.5.13",
"react-native-vector-icons": "^6.0.2",
"react-navigation": "^2.17.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-jest": "^23.2.0",
"babel-plugin-module-resolver": "^3.1.1",
"babel-preset-react-native": "^5",
"eslint": "^5.6.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-flowtype": "^2.50.3",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-react-native": "^3.3.0",
"flow-bin": "^0.75.0",
"husky": "^1.1.2",
"jest": "23.6.0",
"react-test-renderer": "16.4.1"
},
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
},
"setupFiles": [
"./__tests__/setupTests.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"./__tests__/setupTests"
]
},
"rnpm": {
"assets": [
"./src/assets/fonts"
]
}
}