-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
75 lines (75 loc) · 2.14 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
{
"name": "react-native-onyx",
"version": "1.0.0",
"author": "Expensify, Inc.",
"homepage": "https://expensify.com",
"description": "State management for React Native",
"license": "MIT",
"private": true,
"scripts": {
"lint": "eslint .",
"lint-tests": "eslint tests/**",
"test": "jest"
},
"dependencies": {
"ascii-table": "0.0.9",
"expensify-common": "git+https://github.com/Expensify/expensify-common.git#2e5cff552cf132da90a3fb9756e6b4fb6ae7b40c",
"lodash": "4.17.21",
"underscore": "^1.13.1"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@babel/runtime": "^7.11.2",
"@react-native-async-storage/async-storage": "^1.15.5",
"@react-native-community/eslint-config": "^2.0.0",
"@testing-library/jest-native": "^3.4.2",
"@testing-library/react-native": "^7.0.2",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.2.2",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-react-native-web": "^0.13.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"eslint": "^7.6.0",
"eslint-config-expensify": "^2.0.11",
"jest": "^26.5.2",
"jest-cli": "^26.5.2",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-native": "0.64.1",
"react-test-renderer": "16.13.1",
"metro-react-native-babel-preset": "^0.61.0"
},
"peerDependencies": {
"@react-native-async-storage/async-storage": "^1.15.5",
"react": "^17.0.2"
},
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!react-native)/"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/tests/unit/mocks/"
],
"testMatch": [
"**/tests/unit/**/*.[jt]s?(x)",
"**/?(*.)+(spec|test).[jt]s?(x)"
],
"globals": {
"__DEV__": true,
"WebSocket": {}
},
"timers": "fake",
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"@testing-library/jest-native/extend-expect"
]
}
}