-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
68 lines (68 loc) · 2.6 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
62
63
64
65
66
67
68
{
"name": "hero35",
"description": "Official repo of https://hero35.com",
"repository": "https://github.com/mavropalias/heroes.git",
"engines": {
"node": "10"
},
"dependencies": {
"@material-ui/core": "^4.9.8",
"@material-ui/icons": "^4.9.1",
"@types/next": "^9.0.0",
"@zeit/next-css": "^1.0.1",
"algoliasearch": "^3.35.1",
"firebase": "^7.13.2",
"firebase-admin": "^8.10.0",
"firebase-functions": "^3.6.0",
"isomorphic-unfetch": "^3.0.0",
"mailchimp-api-v3": "^1.13.1",
"mobx": "^5.15.4",
"mobx-react-lite": "^1.5.2",
"next": "9.3.4",
"nprogress": "^0.2.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-firebaseui": "^4.1.0",
"react-instantsearch": "^6.4.0",
"react-instantsearch-dom": "^6.4.0",
"react-on-screen": "^2.1.1",
"react-virtualized-auto-sizer": "^1.0.2",
"react-youtube": "7.9.0",
"uuid": "^3.4.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"@firebase/app-types": "^0.6.0",
"@types/algoliasearch": "^3.34.10",
"@types/express": "^4.17.4",
"@types/node": "^13.11.0",
"@types/react": "^16.9.32",
"@types/react-dom": "^16.9.6",
"@zeit/next-bundle-analyzer": "^0.1.2",
"cpx": "^1.5.0",
"firebase-tools": "^7.12.1",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"typescript": "^3.8.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"
}
}