-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.63 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "mniam_mniam",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"ssl": "local-ssl-proxy --key C:/signed_keys/server.key --cert C:/signed_keys/server.crt --source 3400 --target 3000",
"build": "next build",
"start": "next start",
"test": "jest",
"test:watch": "jest --watchAll",
"cypress:open": "cypress open",
"cypress:run": "cypress run --browser=chrome --headless",
"lint": "next lint",
"lint:fix": "next lint --fix",
"preview": "next build && next start -p 3002",
"typecheck": "tsc --noEmit",
"format:write": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache",
"format:check": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache",
"db:studio": "npx drizzle-kit studio --host 127.0.0.1",
"db:push": "npx drizzle-kit generate && npx drizzle-kit push",
"db:drop": "npx drizzle-kit drop",
"ionic:build": "npm run build",
"ionic:serve": "npm run start"
},
"dependencies": {
"@auth/drizzle-adapter": "^0.3.4",
"@aws-sdk/client-s3": "^3.437.0",
"@aws-sdk/lib-storage": "^3.438.0",
"@aws-sdk/s3-presigned-post": "^3.437.0",
"@aws-sdk/types": "^3.433.0",
"@capacitor/android": "5.5.1",
"@capacitor/app": "^5.0.6",
"@capacitor/core": "^5.5.1",
"@libsql/client": "^0.7.0",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@types/bcrypt": "^5.0.1",
"@types/node": "^20.6.2",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.0",
"@typescript-eslint/parser": "^6.8.0",
"autoprefixer": "^10.4.16",
"aws-sdk": "^2.1482.0",
"axios": "^1.5.1",
"bcrypt": "^5.1.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"drizzle-orm": "^0.32.2",
"eslint": "^8.49.0",
"eslint-config-next": "^14.0.1",
"lucide-react": "^0.288.0",
"moment": "^2.29.4",
"next": "^14.2.4",
"next-auth": "^4.24.3",
"postcss": "^8.4.31",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-image-file-resizer": "^0.4.8",
"react-zxing": "^2.0.0",
"sharp": "^0.32.6",
"tailwind": "^4.0.0",
"tailwind-merge": "^1.14.0",
"tailwindcss": "^3.3.3",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.2.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@babel/eslint-parser": "^7.23.3",
"@capacitor/cli": "^5.5.1",
"@ianvs/prettier-plugin-sort-imports": "^4.1.0",
"@next/eslint-plugin-next": "^14.0.1",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.0",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.8",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"cypress": "^13.4.0",
"dotenv": "^16.3.1",
"drizzle-kit": "^0.23.2",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-tailwindcss": "^3.13.0",
"eslint-plugin-testing-library": "^6.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"json5": "^2.2.3",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.7",
"ts-jest": "^29.1.1"
}
}