-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.54 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
{
"name": "cloudberry",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npm run build:db && next dev",
"build:db": "npx prisma db push && npx tsx db/build.ts",
"build": "npm run build:db && next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@fortawesome/free-brands-svg-icons": "^6.2.0",
"@fortawesome/free-regular-svg-icons": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@headlessui/react": "^1.7.4",
"@heroicons/react": "^2.0.13",
"@lyrasearch/lyra": "^0.3.1",
"@mantine/core": "^5.9.1",
"@mantine/hooks": "^5.9.1",
"@mui/joy": "^5.0.0-alpha.71",
"@prisma/client": "^4.11.0",
"@tanstack/react-query": "^4.16.1",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.8",
"cheerio": "^1.0.0-rc.12",
"firebase": "^9.14.0",
"fuse.js": "^6.6.2",
"next": "13.0.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-firebase-hooks": "^5.1.0",
"typescript": "4.8.4"
},
"devDependencies": {
"@types/jsdom": "^20.0.1",
"@types/nodemailer": "^6.4.7",
"autoprefixer": "^10.4.13",
"dotenv": "^16.0.3",
"eslint": "8.30.0",
"eslint-config-next": "13.1.1",
"firebase-admin": "^11.4.1",
"jsdom": "^20.0.3",
"nodemailer": "^6.8.0",
"postcss": "^8.4.19",
"prisma": "^4.11.0",
"prompt-sync": "^4.2.0",
"tailwindcss": "^3.2.4"
}
}