-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.96 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
76
77
78
79
80
81
82
83
84
85
86
{
"name": "oneononeapp",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"format": "eslint ./src --ext .js,.jsx,.ts,.tsx --fix",
"dev:web": "GENERATE_SOURCEMAP=false craco start",
"build:web": "GENERATE_SOURCEMAP=false craco build",
"test:web": "craco test --env=jsdom",
"start:web": "serve -s build",
"eject:web": "react-scripts eject",
"dev:tailwind": "concurrently \"tailwindcss --input input.css --output tailwind.css --no-autoprefixer --watch\" \"tailwind-rn --watch\"",
"build:tailwind": "tailwindcss --input input.css --output tailwind.css --no-autoprefixer && tailwind-rn",
"dev:functions": "wrangler pages dev ./ --persist",
"test:functions": "jest -c functions/jest.config.json ./functions",
"generate:openapi": "rm -rf openapi; openapi-generator-cli generate -g typescript -i openapi.yaml -o ./openapi"
},
"dependencies": {
"@cloudflare/pages-plugin-honeycomb": "^1.0.2",
"@craco/craco": "^6.4.3",
"@react-native-async-storage/async-storage": "^1.15.17",
"@react-native-firebase/analytics": "^14.3.0",
"@react-native-firebase/app": "^14.3.0",
"@react-navigation/bottom-tabs": "^6.1.0",
"@react-navigation/native": "^6.0.7",
"@react-navigation/native-stack": "^6.3.0",
"@types/react-native-vector-icons": "^6.4.10",
"axios": "^1.6.0",
"react": "17.0.2",
"react-dom": "^17.0.2",
"react-native": "0.68.2",
"react-native-reanimated": "^2.8.0",
"react-native-safe-area-context": "^3.3.2",
"react-native-screens": "^3.10.2",
"react-native-vector-icons": "^9.0.0",
"react-native-web": "^0.17.5",
"react-query": "^3.34.12",
"serve": "^13.0.2",
"tailwind-rn": "^4.0.1"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@cloudflare/workers-types": "^4.20230228.0",
"@openapitools/openapi-generator-cli": "^2.5.2",
"@react-native-community/eslint-config": "^2.0.0",
"@types/jest": "^26.0.23",
"@types/react-native": "^0.66.4",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"babel-jest": "^26.6.3",
"better-sqlite3": "8.0.1",
"concurrently": "^7.0.0",
"eslint": "^7.14.0",
"jest": "^29.4.3",
"metro-react-native-babel-preset": "^0.66.2",
"postcss": "^8.4.31",
"react-scripts": "^5.0.0",
"react-test-renderer": "17.0.2",
"tailwindcss": "^3.0.18",
"ts-jest": "^29.0.5",
"typescript": "^4.4.4",
"wrangler": "^3.19.0"
},
"resolutions": {
"@types/react": "^17"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}