This repository has been archived by the owner on Feb 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.89 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "ano-site",
"version": "0.0.1",
"engines": {
"node": "10"
},
"scripts": {
"dev": "next \"src/app/\"",
"preserve": "npm run build-public && npm run build-funcs && npm run build-app && npm run copy-deps && npm run install-deps",
"serve": "cross-env NODE_ENV=production firebase emulators:start --only functions,hosting",
"predeploy": "npm run build-app && npm run build-public && npm run build-funcs && npm run postbuild-app && npm run copy-deps",
"deploy": "firebase deploy",
"deploy:hosting": "firebase deploy --only hosting",
"deploy:functions": "firebase deploy --only functions",
"deploy:firestore:rules": "firebase deploy --only firestore:rules",
"clean": "rimraf \"dist/functions/**\" && rimraf \"dist/public\"",
"build-public": "cpx \"src/public/**/*.*\" \"dist/public\" -C",
"build-funcs": "tsc --project \"src/functions\" && cpx \"src/functions/.runtimeconfig.json\" \"dist/functions\" -C",
"build-app": "NODE_ENV=production next build \"src/app/\"",
"build-app:watch": "NODE_ENV=production next build \"src/app/\"",
"postbuild-app": "cpx \"src/app/static/*\" \"dist/functions/static\" -C",
"copy-deps": "cpx \"*{package.json,package-lock.json,yarn.lock}\" \"dist/functions\" -C",
"install-deps": "cd \"dist/functions\" && npm i",
"storybook": "start-storybook -s ./src/app -p 6006",
"use-staging": "firebase use staging",
"use-production": "firebase use production",
"type-check": "tsc"
},
"dependencies": {
"@emotion/core": "^10.0.21",
"@emotion/styled": "^10.0.23",
"@fortawesome/fontawesome-svg-core": "^1.2.25",
"@fortawesome/free-brands-svg-icons": "^5.11.2",
"@fortawesome/free-solid-svg-icons": "^5.11.2",
"@fortawesome/react-fontawesome": "^0.1.7",
"axios": "^0.21.1",
"date-fns": "^2.8.1",
"dotenv-webpack": "^1.7.0",
"firebase": "^7.5.0",
"firebase-admin": "^8.8.0",
"firebase-functions": "^3.3.0",
"firebaseui": "^4.3.0",
"grpc": "^1.24.2",
"i18next": "^19.0.1",
"i18next-browser-languagedetector": "^4.0.1",
"i18next-xhr-backend": "^3.2.2",
"lodash": "^4.17.19",
"next": "^9.3.2",
"next-compose-plugins": "^2.2.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-firebaseui": "^4.0.0",
"react-fontawesome": "^1.7.1",
"react-hook-form": "^3.28.11",
"react-i18next": "^11.2.5",
"semantic-ui-css": "^2.4.1",
"semantic-ui-icon": "^2.3.3",
"semantic-ui-react": "^0.88.1",
"twitter": "^1.7.1",
"yup": "^0.27.0"
},
"devDependencies": {
"@types/cpx": "^1.5.0",
"@types/dotenv-webpack": "^1.7.0",
"@types/eslint": "^6.1.2",
"@types/eslint-plugin-prettier": "^2.2.0",
"@types/file-loader": "^4.2.0",
"@types/lodash": "^4.14.149",
"@types/node": "^12.12.14",
"@types/prettier": "^1.19.0",
"@types/react": "^16.9.13",
"@types/react-dom": "^16.9.4",
"@types/rimraf": "^2.0.2",
"@types/twitter": "^1.7.0",
"@types/webpack": "^4.41.0",
"@types/yup": "^0.26.26",
"@typescript-eslint/eslint-plugin": "^2.9.0",
"@typescript-eslint/parser": "^2.9.0",
"@zeit/next-css": "^1.0.1",
"cpx": "^1.5.0",
"cross-env": "^6.0.3",
"dotenv": "^8.2.0",
"eslint": "^6.7.2",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.1.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prefer-arrow": "^1.1.6",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"express-list-endpoints": "^4.0.1",
"file-loader": "^5.0.2",
"firebase-functions-test": "^0.1.7",
"firebase-tools": "7.8.1",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "3.7.2",
"url-loader": "^3.0.0",
"webpack": "^4.41.2"
},
"license": "ISC"
}