forked from Fueler-io/Web-Development-Resources
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.1 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
{
"private": true,
"scripts": {
"dev": "next -p 4001",
"build": "next build",
"start": "next start",
"type-check": "tsc",
"lint": "next lint",
"eslint": "eslint ./ --ext js,jsx,ts,tsx",
"style": "tailwindcss build styles/globals.css -o styles/index.css"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@heroicons/react": "^1.0.4",
"@prisma/client": "^3.4.0",
"@stomp/stompjs": "^6.1.2",
"@supabase/supabase-js": "^1.24.0",
"@supabase/ui": "^0.35.0",
"@tailwindcss/forms": "^0.4.0",
"@types/micro-cors": "^0.1.2",
"@types/next-auth": "^3.15.0",
"airtable": "^0.11.1",
"apollo-server-micro": "^3.4.0",
"formik": "^2.2.9",
"fs": "^0.0.1-security",
"graphql": "^16.0.1",
"import": "^0.0.6",
"install": "^0.13.0",
"micro": "^9.3.4",
"micro-cors": "^0.1.1",
"net": "^1.0.2",
"next": "^12.1.0",
"next-auth": "^4.0.0-beta.6",
"next-superjson": "^0.0.2",
"next-themes": "^0.0.15",
"nexus": "^1.1.0",
"npm": "^8.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hooks-form": "^2.0.1",
"react-infinite-scroll-component": "^6.1.0",
"react-query": "^3.26.0",
"react-stomp": "^5.1.0",
"react-stomp-hooks": "^2.0.2",
"react-toastify": "^8.0.3",
"sockjs": "^0.3.24",
"superjson": "^1.8.0",
"swr": "^1.0.1",
"tls": "^0.0.1",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/node": "^16.11.6",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"autoprefixer": "^10.4.2",
"babel-plugin-superjson-next": "^0.4.2",
"eslint": "^8.4.1",
"eslint-config-airbnb": "^19.0.2",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"postcss": "^8.4.5",
"prisma": "^3.4.0",
"tailwindcss": "^3.0.16",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
}
}