forked from mavropalias/Hero35
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.32 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": "heroes",
"description": "Official repo of https://hero35.com",
"repository": "https://github.com/mavropalias/heroes.git",
"engines": {
"node": "8"
},
"dependencies": {
"@material-ui/core": "^4.7.2",
"@material-ui/icons": "^4.5.1",
"@types/next": "^9.0.0",
"@zeit/next-css": "^1.0.1",
"algoliasearch": "^3.35.1",
"firebase": "^7.5.2",
"firebase-admin": "^8.8.0",
"firebase-functions": "^3.3.0",
"isomorphic-unfetch": "^3.0.0",
"next": "9.1.4",
"nprogress": "^0.2.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-firebaseui": "^4.0.0",
"react-instantsearch": "^6.0.0",
"react-instantsearch-dom": "^6.0.0",
"react-youtube": "^7.9.0",
"uuid": "^3.3.3"
},
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"@firebase/app-types": "^0.4.9",
"@types/algoliasearch": "^3.34.7",
"@types/express": "^4.17.2",
"@types/node": "^12.12.14",
"@types/react": "^16.9.15",
"@types/react-dom": "^16.9.4",
"@zeit/next-bundle-analyzer": "^0.1.2",
"cpx": "^1.5.0",
"firebase-tools": "^7.9.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"typescript": "^3.7.3"
},
"scripts": {
"dev": "source .env && npm run clean && next \"src/app\" -p 3500",
"preserve": "npm run clean && npm run build-public && npm run build-funcs && npm run build-app && npm run build-app-static && npm run copy-deps && npm run install-deps",
"serve": "NODE_ENV=production node_modules/.bin/firebase serve",
"deploy": "node_modules/.bin/firebase deploy",
"clean": "rimraf \"dist/functions\" && rimraf \"dist/public\"",
"build-public": "cpx \"src/app/public/**/*.*\" \"dist/public\" && cpx \"src/functions/public/**/*.*\" \"dist/public\"",
"build-app-static": "cpx \"dist/functions/next/static/**/*.*\" \"dist/public/_next/static\" -C",
"build-app": "next build \"src/app\"",
"build-funcs": "./node_modules/.bin/tsc --project src/functions",
"copy-deps": "cpx \"*{package.json,package-lock.json}\" \"dist/functions\"",
"install-deps": "cd \"dist/functions\" && npm ci",
"analyze": "BUNDLE_ANALYZE=both npm run build-app",
"analyze:server": "BUNDLE_ANALYZE=server npm run build-app",
"analyze:browser": "BUNDLE_ANALYZE=browser npm run build-app"
}
}