-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.42 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
{
"name": "with-firebase-hosting",
"version": "5.0.0",
"description": "Host Next.js SSR app on Firebase Cloud Functions with Firebase Hosting redirects.",
"engines": {
"node": "10"
},
"main": "firebaseFunctions.js",
"license": "MIT",
"scripts": {
"dev": "next src/",
"build": "next build src/",
"start": "next start src/",
"serve": "npm run build && firebase emulators:start --only functions,hosting",
"shell": "npm run build && firebase functions:shell",
"deploy": "firebase deploy --only functions,hosting",
"logs": "firebase functions:log"
},
"dependencies": {
"@material-ui/core": "^4.9.13",
"dotenv": "^8.2.0",
"firebase": "^7.14.3",
"firebase-admin": "^8.9.0",
"firebase-functions": "^3.3.0",
"next": "^9.4.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"recoil": "^0.0.7"
},
"devDependencies": {
"@types/node": "^14.0.1",
"@types/react": "^16.9.35",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.0.2",
"firebase-functions-test": "^0.2.1",
"firebase-tools": "^8.0.1",
"prettier": "^2.0.5",
"typescript": "^3.8.3"
}
}