-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.44 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.44 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
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
108
109
110
{
"name": "inventory-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"scrape:transpondery": "node scripts/scrapers/scrapeTranspondery.js",
"scrape:uhs": "node scripts/scrapers/scrapeUHS.js",
"scrape:all": "npm run scrape:transpondery && npm run scrape:uhs",
"update:fccids": "node scripts/updateFccIds.js",
"create:test-users": "ts-node scripts/create-test-users.ts"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"dependencies": {
"@auth/prisma-adapter": "^2.8.0",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@headlessui/react": "^2.2.0",
"@heroicons/react": "^2.1.1",
"@hookform/resolvers": "^5.0.1",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.22.0",
"@radix-ui/react-alert-dialog": "^1.1.6",
"@radix-ui/react-checkbox": "^1.1.4",
"@radix-ui/react-dialog": "^1.1.7",
"@radix-ui/react-dropdown-menu": "^2.1.7",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-scroll-area": "^1.2.3",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-switch": "^1.1.4",
"@radix-ui/react-tabs": "^1.1.4",
"@radix-ui/react-toast": "^1.2.6",
"@tanstack/react-query": "^5.71.0",
"@types/bcryptjs": "^3.0.0",
"@types/cheerio": "^0.22.35",
"@types/next-auth": "^3.15.0",
"axios": "^1.8.4",
"bcryptjs": "^3.0.2",
"cheerio": "^1.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"csv-parse": "^5.6.0",
"date-fns": "^4.1.0",
"fast-xml-parser": "^5.2.0",
"framer-motion": "^12.6.2",
"fuse.js": "^7.1.0",
"jose": "^6.0.10",
"lodash": "^4.17.21",
"lucide-react": "^0.350.0",
"next": "^15.2.4",
"next-auth": "^4.24.11",
"next-themes": "^0.2.1",
"nodemailer": "^6.10.0",
"puppeteer": "^24.6.0",
"puppeteer-core": "^24.6.0",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.55.0",
"react-hot-toast": "^2.5.2",
"react-zxing": "^2.1.0",
"sonner": "^2.0.2",
"tailwind-merge": "^3.2.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.24.2",
"zustand": "^5.0.3"
},
"devDependencies": {
"@storybook/addon-essentials": "^8.6.12",
"@storybook/addon-interactions": "^8.6.12",
"@storybook/addon-links": "^8.6.12",
"@storybook/builder-vite": "^8.6.12",
"@storybook/react": "^8.6.12",
"@storybook/testing-library": "^0.2.2",
"@swc/core": "^1.11.20",
"@swc/jest": "^0.2.37",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/bcrypt": "^5.0.2",
"@types/cookie": "^1.0.0",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.16",
"@types/node": "^20.17.28",
"@types/nodemailer": "^6.4.17",
"@types/react": "19.0.12",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.1.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"plop": "^4.0.1",
"postcss": "^8",
"prisma": "^5.22.0",
"tailwindcss": "^3.3.0",
"ts-node": "^10.9.2",
"typescript": "5.8.2"
}
}