generated from tomsoderlund/nextjs-pwa-firebase-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 983 Bytes
/
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
{
"name": "nextjs-pwa-firebase-boilerplate",
"description": "Next.js serverless PWA with Firebase and React Hooks",
"version": "1.13.0",
"author": "Tom Söderlund <tom@tomsoderlund.com>",
"license": "ISC",
"scripts": {
"dev": "next dev -p 3004",
"vercel": "echo 'Running as Vercel serverless'; vercel dev --listen 3004",
"build": "next build",
"start": "next start -p 3004",
"test": "echo 'Running Standard.js and Jasmine unit tests...\n' && yarn lint && yarn unit",
"unit": "jasmine",
"lint": "standard",
"fix": "standard --fix",
"deploy": "vercel --prod",
"v+": "yarn version --patch",
"v++": "yarn version --minor"
},
"dependencies": {
"aether-css-framework": "latest",
"firebase": "^7.15.5",
"next": "latest",
"next-offline": "^5.0.2",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-toastify": "^6.0.8"
},
"devDependencies": {
"standard": "^14.3.4",
"webpack": "^5.25.0"
}
}