-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.26 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
{
"name": "mic-drop",
"version": "0.0.0",
"description": "Open Mic Dashboard for NYC Comedians",
"main": "app/layout.tsx",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"seed": "ts-node ./prisma/seed.ts"
},
"author": "Qualle Tech",
"license": "GPL-3.0-or-later",
"dependencies": {
"@next/third-parties": "^14.2.9",
"@prisma/client": "^5.13.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-prisma": "^0.2.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-prettier": "^5.1.3",
"moment": "^2.30.1",
"next": "^14.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-query": "^3.39.3"
},
"devDependencies": {
"@types/node": "20.11.28",
"@types/react": "18.2.66",
"autoprefixer": "^10.4.19",
"eslint": "^8.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"postcss": "^8.4.38",
"prisma": "^5.13.0",
"tailwindcss": "^3.4.3",
"ts-node": "^10.9.2",
"typescript": "5.4.2"
}
}