-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.85 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
{
"name": "csvprocessorui",
"version": "0.1.0",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"test:all": "yarn run test:cover && yarn run test:integration",
"test:cov": "yarn run jest --coverage",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand",
"lint": "eslint .",
"web:build": "react-app-rewired build",
"web:test": "react-app-rewired test",
"web:eject": "react-app-rewired eject",
"web": "react-app-rewired start"
},
"dependencies": {
"enzyme": "^3.11.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-native": "0.63.4",
"react-native-localize": "^2.0.1",
"react-native-web": "^0.14.10",
"react-scripts": "4.0.1"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/runtime": "^7.8.4",
"@react-native-community/eslint-config": "^1.1.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/react": "^17.0.0",
"@types/react-native": "^0.63.42",
"@wojtekmaj/enzyme-adapter-react-17": "^0.4.1",
"babel-jest": "^25.1.0",
"babel-plugin-import": "^1.13.3",
"customize-cra": "^1.0.0",
"eslint": "^6.5.1",
"jest": "^25.1.0",
"metro-react-native-babel-preset": "^0.59.0",
"react-app-rewired": "^2.1.8",
"react-test-renderer": "16.13.1",
"typescript": "^4.1.3"
},
"jest": {
"preset": "react-native"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}