generated from imperial/impaas-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.4 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "cpp-connect",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:email": "email dev",
"prebuild": "npm run db:generate",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"format": "prettier --write '{app,components,lib}/**/*.{js,jsx,ts,tsx,json,css,scss,md}'",
"style-check": "prettier --check '{app,components,lib}/**/*.{ts,tsx,js,jsx,json,css,scss,md}'",
"prepare": "husky",
"db:pull": "dotenv -e .env.local prisma db pull",
"db:push": "dotenv -e .env.local prisma db push",
"db:migrate-dev": "dotenv -e .env.local prisma migrate dev",
"db:studio": "dotenv -e .env.local prisma studio",
"db:reset": "dotenv -e .env.local prisma migrate reset --force",
"db:generate": "dotenv -e .env.local prisma generate",
"db:seed": "dotenv -e .env.local prisma db seed"
},
"lint-staged": {
"{app, components, lib, styles}/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"dependencies": {
"@auth/prisma-adapter": "^2.4.2",
"@mdxeditor/editor": "^3.11.0",
"@prisma/client": "^5.17.0",
"@radix-ui/colors": "^3.0.0",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-collapsible": "^1.1.0",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/themes": "^3.1.1",
"@react-email/components": "0.0.22",
"@tanstack/react-table": "^8.20.1",
"@uiw/react-md-editor": "^3.6.0",
"date-fns": "^3.6.0",
"date-fns-tz": "^3.1.3",
"framer-motion": "^11.3.29",
"html-to-text": "^9.0.5",
"lint-staged": "^15.2.7",
"mime-types": "^2.1.35",
"mysql2": "^3.10.3",
"next": "14.2.5",
"next-auth": "^5.0.0-beta.19",
"next-themes": "^0.3.0",
"nodemailer": "^6.9.14",
"prettier": "^3.3.3",
"prisma": "^5.17.0",
"react": "^18",
"react-dom": "^18",
"react-email": "2.1.6",
"react-headless-pagination": "^1.1.6",
"react-icons": "^5.2.1",
"react-markdown": "^9.0.1",
"react-responsive": "^10.0.0",
"rehype-raw": "^7.0.0",
"rehype-stringify": "^10.0.0",
"remark-breaks": "^4.0.0",
"remark-extended-table": "^2.0.2",
"remark-gfm": "^4.0.0",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@faker-js/faker": "^8.4.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/html-to-text": "^9.0.4",
"@types/mime-types": "^2.1.4",
"@types/node": "^20",
"@types/nodemailer": "^6.4.15",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-responsive": "^8.0.8",
"dotenv-cli": "^7.4.2",
"eslint": "^8",
"eslint-config-next": "14.2.5",
"husky": "^9.1.4",
"sass": "^1.77.8",
"typescript": "^5"
},
"license": "MIT",
"contributors": [
{
"name": "Alexander Biraben-Renard",
"email": "[email protected]"
},
{
"name": "Brady Nicol",
"email": "[email protected]"
},
{
"name": "Illia Derevianko",
"email": "[email protected]"
},
{
"name": "Kishan Sambhi",
"email": "[email protected]"
},
{
"name": "Matthew Alex",
"email": "[email protected]"
}
],
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
}
}