-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.37 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.37 KB
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
{
"name": "react-native-template",
"version": "1.0.0",
"main": "index.js",
"packageManager": "yarn@4.5.3",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write \"**/*.{ts,tsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,json,md}\"",
"typecheck": "tsc --noEmit",
"ci": "npm run lint && npm run format:check && npm run typecheck && npm run test",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@react-navigation/bottom-tabs": "^7.2.0",
"@react-navigation/native": "^7.1.0",
"@react-navigation/native-stack": "^7.2.0",
"clsx": "^2.1.1",
"drizzle-orm": "^0.44.0",
"expo": "~54.0.0",
"expo-status-bar": "~3.0.0",
"nativewind": "^4.1.0",
"pg": "^8.13.0",
"react": "19.1.0",
"react-native": "0.81.5",
"react-native-reanimated": "^4.2.1",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.16.0",
"react-native-svg": "15.12.1",
"react-native-worklets": "^0.7.1",
"tailwind-merge": "^3.0.0"
},
"private": true,
"devDependencies": {
"@babel/core": "^7.27.0",
"@babel/plugin-transform-template-literals": "^7.27.0",
"@babel/preset-typescript": "^7.28.0",
"@eslint/js": "^9.18.0",
"@testing-library/react-native": "^12.5.0",
"@types/jest": "29.5.14",
"@types/pg": "^8.11.0",
"@types/react": "19.1.10",
"babel-preset-expo": "^54.0.0",
"dotenv": "^17.0.0",
"drizzle-kit": "^0.31.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^7.0.0",
"eslint-plugin-react-native": "^5.0.0",
"globals": "^16.0.0",
"jest": "^29.7.0",
"jest-expo": "~54.0.0",
"prettier": "^3.5.0",
"prettier-plugin-tailwindcss": "^0.6.0",
"react-native-svg-transformer": "^1.5.0",
"react-test-renderer": "19.1.0",
"tailwindcss": "^3.4.0",
"ts-jest": "^29.4.0",
"typescript": "^5.9.0",
"typescript-eslint": "^8.22.0"
}
}