-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.7 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.7 KB
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
{
"name": "shift-left",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "react-native start",
"android": "react-native run-android",
"ios": "react-native run-ios",
"test": "jest --config jest.json",
"e2e": "jest --config jest.e2e.json e2e",
"appium": "appium"
},
"dependencies": {
"react": "16.8.3",
"react-native": "0.59.9",
"react-native-elements": "^1.1.0",
"react-native-gesture-handler": "^1.2.1",
"react-native-vector-icons": "^6.4.2",
"react-navigation": "^3.9.2"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/runtime": "^7.4.5",
"@types/react": "^16.8.17",
"@types/react-native": "^0.57.55",
"ajv": "^6.10.0",
"appium": "^1.13.0",
"babel-eslint": "9.x",
"babel-jest": "^24.8.0",
"colors": "^1.3.3",
"compare-versions": "^3.4.0",
"custom-env": "^1.0.1",
"dotenv": "^8.0.0",
"eslint": "5.x",
"eslint-config-react-app": "^4.0.1",
"eslint-plugin-flowtype": "2.x",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "1.5.0",
"husky": ">=1",
"jest": "^24.8.0",
"lint-staged": ">=8",
"metro-react-native-babel-preset": "^0.54.1",
"minimist": "^1.2.2",
"native-testing-library": "^3.0.0",
"prettier": "1.17.1",
"react-native-testing-library": "^1.7.0",
"react-test-renderer": "16.8.3",
"wd": "^1.11.2"
},
"license": "UNLICENSED",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write",
"git add"
],
"*.js": [
"eslint --fix",
"git add"
]
}
}