-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.87 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
{
"name": "bldr-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "set NODE_ENV=development && next dev",
"local": "set NODE_ENV=test && next dev",
"build": "next build && next export",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"deploy": "next build && next export && firebase deploy",
"deploy:dev": "next build && next export && firebase use development && firebase deploy -P development --only hosting:bldr-io-dev && firebase deploy --only functions",
"deploy:dev:functions": "next build && next export && firebase use development && firebase deploy --only functions",
"deploy:prod": "next build && next export && firebase use production && firebase deploy -P production --only hosting:bldr-io && firebase deploy --only functions",
"deploy:prod:hosting": "next build && next export && firebase use production && firebase deploy -P production --only hosting:bldr-io"
},
"dependencies": {
"@auth0/nextjs-auth0": "^1.9.1",
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@fontsource/roboto": "^4.5.7",
"@mdx-js/loader": "^2.1.2",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.8.6",
"@next/mdx": "^12.2.0",
"axios": "^0.27.2",
"firebase": "^9.9.0",
"next": "12.2.0",
"next-compose-plugins": "^2.2.1",
"nextjs-google-analytics": "^2.1.0",
"react": "^17.0.2",
"react-cookie": "^4.1.1",
"react-dom": "^17.0.2",
"react-firebaseui": "^6.0.0",
"react-hook-form": "^7.33.1",
"react-router-dom": "^6.3.0",
"remark-gfm": "^3.0.1",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@types/node": "18.0.1",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"@types/styled-components": "^5.1.25",
"eslint": "8.19.0",
"eslint-config-next": "12.2.0",
"typescript": "4.7.4"
}
}