-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.89 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
{
"name": "support-local-akron",
"description": "A way to support local Akron businesses during the coronovirus quarantine",
"version": "1.0.0",
"author": "Byron Delpinal <byronddelpinal@gmail.com>",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-brands-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@prisma/client": "^5.11.0",
"@vercel/blob": "^0.22.1",
"@vercel/postgres": "^0.7.2",
"bootstrap": "^4.4.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"lucide-react": "^0.364.0",
"next": "^14.1.3",
"next-auth": "^5.0.0-beta.15",
"react": "^18.2.0",
"react-bootstrap": "^1.0.0-beta.17",
"react-dom": "^18.2.0",
"react-share": "^5.1.0",
"tailwind-merge": "^2.2.2",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.7",
"@types/node": "^20.11.27",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"autoprefixer": "^10.4.18",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.3",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.12",
"prisma": "^5.11.0",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.2"
},
"keywords": [
"local business",
"Akron, OH"
],
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"postinstall": "prisma generate",
"start": "next start",
"lint": "next lint",
"format": "prettier --write src/**/*.{js,jsx}",
"test": "echo \"Should probs do this...\""
},
"repository": {
"type": "git",
"url": "https://github.com/ByronDDelpinal/support-local-akron"
},
"stylelint": {
"rules": {
"selector-max-class": 2
}
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
}
}