-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
89 lines (89 loc) · 2.81 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
{
"name": "next-prisma-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"generate": "npx prisma generate",
"migrate:dev": "npx prisma migrate dev --preview-feature",
"push": "npx prisma db push",
"studio": "npx prisma studio",
"test": "vitest",
"test-ci": "vitest run",
"format": "tsc --noEmit && npx prisma format && prettier . --write && eslint --fix .",
"format-ci": "tsc --noEmit && prettier . --check && eslint --report-unused-disable-directives .",
"deploy": "npx prisma generate && npx prisma migrate deploy && next build",
"prisma:seed": "tsx src/scripts/seed.ts"
},
"dependencies": {
"@faker-js/faker": "^8.0.2",
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.1.1",
"@mdx-js/loader": "^3.0.0",
"@mdx-js/react": "^3.0.0",
"@next-auth/prisma-adapter": "^1.0.7",
"@next/mdx": "^14.0.4",
"@prisma/client": "^5.19.1",
"@reduxjs/toolkit": "^1.9.5",
"@rjsf/core": "^5.21.1",
"@rjsf/utils": "^5.21.1",
"@rjsf/validator-ajv8": "^5.21.1",
"@sinclair/typebox": "^0.32.4",
"@types/mdx": "^2.0.10",
"@types/node": "20.5.8",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"autoprefixer": "10.4.15",
"classnames": "^2.5.1",
"crypto-js": "^4.2.0",
"eslint": "8.48.0",
"eslint-config-next": "13.4.19",
"googleapis": "^144.0.0",
"jotai": "^2.6.1",
"jsonwebtoken": "^9.0.2",
"ms": "^2.1.3",
"next": "^13.5.6",
"next-auth": "^4.24.5",
"nodemailer": "^6.9.7",
"p-limit": "^6.1.0",
"postcss": "^8.4.32",
"react": "18.2.0",
"react-calendar": "^5.0.0",
"react-calendly": "^4.3.1",
"react-dom": "18.2.0",
"react-redux": "^8.1.2",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-mdx-frontmatter": "^4.0.0",
"sharp": "^0.33.5",
"swr": "^2.2.5",
"tailwindest": "^2.2.1",
"typescript": "5.2.2"
},
"//": "TODO: swc-jotai/react-refresh is broken at version 0.1.1, holding meanwhile.",
"devDependencies": {
"@next/eslint-plugin-next": "^14.0.4",
"@swc-jotai/react-refresh": "0.1.0",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@testing-library/react": "^14.1.2",
"@types/crypto-js": "^4.2.1",
"@types/jsonwebtoken": "^9.0.5",
"@types/nodemailer": "^6.4.14",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@vitejs/plugin-react": "^4.2.1",
"dotenv-cli": "^7.3.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"jsdom": "^23.0.1",
"node-mocks-http": "^1.15.1",
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.5.10",
"prisma": "^5.7.1",
"tailwindcss": "^3.4.10",
"tsx": "^4.17.0",
"vitest": "^1.1.0"
}
}