-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.51 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
{
"name": "@ngodingbang/push-notification-nextjs-firebase",
"version": "1.0.0",
"private": true,
"description": "Create a simple push notification on a web using Next.js and Firebase.",
"engineStrict": true,
"engines": {
"node": "^20.15.0"
},
"volta": {
"node": "20.15.0"
},
"scripts": {
"dev": "next dev",
"dev:secure": "next dev --experimental-https",
"migrate:dev": "npx dotenv -e .env.local -- prisma migrate dev",
"migrate:deploy": "npx dotenv -e .env.local -- prisma migrate deploy",
"migrate:reset": "npx dotenv -e .env.local -- prisma migrate reset",
"db:push": "npx dotenv -e .env.local -- prisma db push",
"db:seed": "npx dotenv -e .env.local -- prisma db seed",
"prisma:generate": "npx dotenv -e .env.local -- prisma generate",
"prisma:studio": "npx dotenv -e .env.local -- prisma studio",
"production:build": "npm run prisma:generate && npm run migrate:deploy && next build",
"build": "next build",
"postinstall": "npm run prisma:generate && npm run migrate:deploy",
"start": "next start",
"lint": "next lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Artopologi/backend.git"
},
"keywords": [
"Backend",
"Artopologi",
"Marketplace",
"Express.js"
],
"author": {
"name": "Septianata Rizky Pratama",
"email": "ngodingbang@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ngodingbang/push-notification-nextjs-firebase/issues"
},
"homepage": "https://github.com/ngodingbang/push-notification-nextjs-firebase#readme",
"dependencies": {
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^5.16.0",
"@mui/lab": "^5.0.0-alpha.172",
"@mui/material-nextjs": "^5.15.11",
"@prisma/client": "^5.17.0",
"@scalar/nextjs-api-reference": "^0.4.43",
"chalk": "^5.3.0",
"firebase": "^10.12.3",
"firebase-admin": "^12.2.0",
"next": "^14.2.5",
"next-swagger-doc": "^0.4.0",
"notistack": "^3.0.1",
"prisma": "^5.17.0",
"react": "^18",
"react-dom": "^18",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"dotenv-cli": "^7.4.2",
"eslint": "^8",
"eslint-config-next": "14.2.4",
"eslint-plugin-jsdoc": "^48.7.0",
"postcss": "^8",
"typescript": "^5"
},
"prisma": {
"schema": "src/database/schema.prisma",
"seed": "node src/database/seed.ts"
}
}