-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
61 lines (61 loc) · 2.39 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
{
"name": "ajonp-ajsbooks-nextjs",
"version": "0.0.1",
"description": "Next.js Example using Firestore, Firebase Hosting",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/AJONPLLC/ajonp-ajsbooks-nextjs.git"
},
"keywords": [
"nextjs",
"firestore",
"firebase",
"materialui"
],
"author": "Alex Patterson <[email protected]> (https://ajonp.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/AJONPLLC/ajonp-ajsbooks-nextjs/issues"
},
"homepage": "https://github.com/AJONPLLC/ajonp-ajsbooks-nextjs#readme",
"dependencies": {
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"@material-ui/styles": "^4.11.2",
"firebase": "^8.1.2",
"isomorphic-unfetch": "^3.1.0",
"next": "^9.5.5",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"rxfire": "^3.13.5",
"rxjs": "^6.6.3"
},
"engines": {
"node": "8"
},
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"export": "next export",
"analyze": "cross-env BUNDLE_ANALYZE=both next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build",
"build:functions": "npm run build:functions:lint && cpx \"functions/lib/functions/src/**/*.*\" dist/functions",
"build:functions:lint": "cd functions && npm install && npm run lint && npm run build",
"clean": "rimraf dist && rimraf functions/lib && rimraf .next",
"copy:deps": "cpx \"functions/*{package.json,package-lock.json}\" dist/functions && ncp functions/node_modules/ dist/functions/node_modules && cpx \".next/serverless/**/*.*\" dist/functions/_next/serverless/ && cpx \".next/static/**/*.*\" dist/public/_next/static/ && cpx \"static/**/*.*\" dist/public/static && cpx \"dist/functions/_next/static/**/*.*\" dist/public/_next/static && cpx \"dist/functions/_next/serverless/pages/*.html\" dist/public",
"firebase:build": "npm install && npm run clean && npm run build && npm run build:functions && npm run copy:deps",
"firebase:serve": "npm run firebase:build && firebase serve",
"firebase:deploy": "npm run firebase:build && firebase deploy"
},
"devDependencies": {
"@zeit/next-bundle-analyzer": "^0.1.2",
"cpx": "^1.5.0",
"cross-env": "^5.2.1",
"ncp": "^2.0.0",
"rimraf": "^2.7.1",
"typescript": "^3.9.7"
}
}