-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
39 lines (39 loc) · 950 Bytes
/
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
{
"name": "WtfReactNativeTesting",
"version": "1.1.0",
"author": {
"name": "tuantvk",
"email": "[email protected]",
"url": "https://tuantvk.github.io"
},
"scripts": {
"start": "react-native start",
"test": "jest",
"lint": "eslint ."
},
"dependencies": {
"react": "16.9.0",
"react-dom": "^16.9.0",
"react-native": "0.62.3"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/runtime": "^7.6.0",
"@react-native-community/eslint-config": "^0.0.5",
"babel-jest": "^24.9.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.4.4",
"eslint": "^6.3.0",
"jest": "^24.9.0",
"metro-react-native-babel-preset": "^0.56.0",
"react-native-testing-library": "^1.11.1",
"react-test-renderer": "16.8.6"
},
"jest": {
"preset": "react-native",
"setupFilesAfterEnv": [
"<rootDir>/jestSetup.js"
]
}
}