-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.42 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.42 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
{
"name": "pcassembler",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"build": "node --no-deprecation ./node_modules/next/dist/bin/next build",
"start": "next start",
"lint": "next lint",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@supabase/postgrest-js": "^1.17.10",
"@supabase/supabase-js": "^2.47.12",
"@types/react-datepicker": "^6.2.0",
"@vitejs/plugin-react": "^4.3.4",
"bcrypt": "^5.1.1",
"bootstrap": "^5.3.3",
"classnames": "^2.5.1",
"cookie": "^1.0.2",
"crypto-js": "^4.2.0",
"dotenv": "^16.4.7",
"jose": "^5.9.6",
"next": "^15.1.5",
"nodemailer": "^6.9.16",
"rc-slider": "^11.1.8",
"rc-tooltip": "^6.4.0",
"react": "^18.0.0",
"react-bootstrap": "^2.10.9",
"react-datepicker": "^8.2.1",
"react-dom": "^18.0.0",
"react-icons": "^5.3.0",
"react-toastify": "^11.0.5",
"recharts": "^2.15.1",
"sass": "^1.82.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/crypto-js": "^4.2.2",
"@types/node": "^22",
"@types/nodemailer": "^6.4.17",
"@types/react": "^18",
"@types/react-dom": "^18",
"@vitest/coverage-istanbul": "^3.0.8",
"eslint": "^8",
"eslint-config-next": "15.0.3",
"jsdom": "^26.0.0",
"sass-loader": "^16.0.4",
"typescript": "^5",
"vitest": "^3.0.7"
}
}