-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.76 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": "checkoutDemo",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "react-native start",
"start:android": "react-native run-android",
"start:ios": "react-native run-ios",
"tsc": "tsc --project tsconfig.json --noEmit",
"eslint": "eslint -c .eslintrc.cjs --ext .js,.jsx,.ts,tsx src --max-warnings=0",
"eslint:fix": "eslint --fix -c .eslintrc.cjs --ext .js,.jsx,.ts,tsx src",
"lint": "yarn tsc && yarn eslint",
"test": "jest",
"clean-install": "git clean -xfd && yarn install"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@hookform/resolvers": "^3.9.0",
"react": "18.2.0",
"react-hook-form": "^7.52.1",
"react-native": "0.74.3",
"react-native-animation-hooks": "^1.0.1",
"react-native-svg": "^15.4.0",
"yup": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native/babel-preset": "0.74.85",
"@react-native/eslint-config": "0.74.85",
"@react-native/metro-config": "0.74.85",
"@react-native/typescript-config": "0.74.85",
"@types/react": "^18.2.6",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^29.6.3",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-consistent-default-export-name": "^0.0.15",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.2.12",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.1.0",
"eslint-plugin-unicorn": "^44.0.2",
"jest": "^29.6.3",
"prettier": "2.8.8",
"react-test-renderer": "18.2.0",
"typescript": "5.0.4"
},
"engines": {
"node": ">=18"
}
}