-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.23 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.23 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
{
"name": "opbr-companion-web-2",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "npx prettier . --write",
"type-check": "npx tsc --noEmit",
"audit": "npm audit --omit=dev",
"test": "jest",
"test:watch": "jest --watch",
"prepare": "husky",
"pre-push": ".husky/pre-push"
},
"dependencies": {
"@supabase/supabase-js": "^2.49.1",
"next": "^16.1.6",
"postcss": "^8.5.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.5.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@next/bundle-analyzer": "^15.2.3",
"@tailwindcss/postcss": "^4.0.14",
"@types/jest": "^29.5.14",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"daisyui": "^5.0.0",
"eslint": "^9",
"eslint-config-next": "15.2.1",
"eslint-config-prettier": "^10.1.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"tailwindcss": "^4.0.14",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"typescript": "^5"
},
"packageManager": "npm@11.2.0",
"engines": {
"node": "22.14.0"
}
}