-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
55 lines (55 loc) · 1.34 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": "frames-react-native",
"version": "1.2.1",
"description": "Frames React Native",
"main": "dist/index.js",
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --watch --coverage=false",
"build": "tsc"
},
"dependencies": {
"creditcards": "^4.2.0",
"creditcards-types": "^3.2.0",
"expo": "^50.0.15",
"node-fetch": "^2.6.7"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": ">=7.23.2",
"@babel/preset-react": "^7.12.13",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/jest-native": "^3.3.0",
"@testing-library/react-native": "^7.1.0",
"@types/jest": "^26.0.20",
"@types/node-fetch": "^2.5.8",
"@types/react": "^18.2.75",
"@types/react-test-renderer": "^18.0.7",
"@types/uuid": "^9.0.1",
"babel-preset-expo": "~9.5.2",
"jest": ">=29.7.0",
"jest-expo": ">=50.0.4",
"react": "~18.2.0",
"react-native": "~0.73.6",
"react-native-typescript-transformer": "^1.2.10",
"ts-jest": "^29.1.2",
"typescript": "~5.4.4"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"coverageReporters": [
"lcov"
],
"transform": {
"\\.png$": "<rootDir>/__mocks__/fileTransformer.js"
}
}
}