-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 3.98 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "dashboard",
"version": "1.0.0",
"author": "[email protected]",
"description": "",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"license": "MIT",
"scripts": {
"compile": "yarn workspace @dashboard/nextjs tsc -p .",
"dev:web": "yarn --cwd packages/nextjs dev",
"build-function": "yarn --cwd packages/functions build",
"build": "yarn --cwd packages/nextjs build",
"export": "yarn --cwd packages/nextjs export",
"seed:up": "yarn --cwd packages/db seed:up",
"generate": "graphql-codegen",
"lint": "eslint --ignore-pattern './**/*.{ts,tsx}'",
"lint:fix": "yarn lint --fix",
"deploy": "yarn build && yarn export && firebase deploy --only hosting",
"emulate": "firebase emulators:start",
"deploy-docker": "yarn && yarn --cwd packages/functions && yarn build-function",
"deploy-docker-ui": "yarn"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"prepare-commit-msg": "exec < /dev/tty && git-cz --hook"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --cache --fix"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@apollo/client": "^3.2.1",
"@devexpress/dx-react-scheduler": "^2.7.6",
"@emotion/react": "^11.6.0",
"@ericz1803/react-google-calendar": "^4.2.1",
"@mui/material": "^5.1.1",
"@mui/x-data-grid": "^5.1.0",
"@sergeymyssak/nextjs-sitemap": "^2.0.3",
"apollo-server-micro": "^2.18.1",
"gapi-client": "^0.0.3",
"html-webpack-plugin": "^5.3.2",
"i18next": "^21.3.3",
"i18next-browser-languagedetector": "^6.1.2",
"i18next-http-backend": "^1.3.1",
"next-i18next": "^9.1.0",
"next-optimized-images": "^2.6.2",
"pg": "^8.7.1",
"react-beautiful-dnd": "^13.1.0",
"react-contenteditable": "^3.3.6",
"react-i18next": "^11.14.3",
"react-picture-in-picture": "^1.0.0",
"react-simple-image-viewer": "^1.1.1",
"react-simple-oauth2-login": "^0.5.3",
"react-typist": "^2.0.5",
"swr": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@emotion/styled": "^11.6.0",
"@graphql-codegen/add": "^2.0.1",
"@graphql-codegen/cli": "^1.17.8",
"@graphql-codegen/typescript": "^1.17.9",
"@graphql-codegen/typescript-operations": "^1.17.8",
"@graphql-codegen/typescript-react-apollo": "^2.0.6",
"@next/bundle-analyzer": "^12.0.4",
"@stripe/react-stripe-js": "^1.4.1",
"@stripe/stripe-js": "^1.17.1",
"@swc/cli": "^0.1.51",
"@swc/core": "^1.2.105",
"@types/node": "^14.14.2",
"@types/nprogress": "^0.2.0",
"@types/react": "^17.0.34",
"@types/rebass__forms": "^4.0.5",
"@types/yup": "^0.29.11",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "2",
"add": "^2.0.6",
"autosize": "^5.0.1",
"babel-eslint": "^10.1.0",
"browserslist": "^4.16.3",
"commitizen": "^4.2.2",
"core-js": "2",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^8.2.0",
"eslint": "^7.19.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "7",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^1.7.0",
"eslint-plugin-unused-imports": "^0.1.3",
"husky": "^4.3.0",
"jquery": "^3.6.0",
"lint-staged": "^10.4.2",
"lodash": "^4.17.21",
"next-compose-plugins": "^2.2.1",
"next-offline": "^5.0.5",
"next-optimized-images": "^2.6.2",
"next-plugin-custom-babel-config": "^1.0.5",
"next-seo": "^4.26.0",
"next-translate": "^1.0.5",
"next-transpile-modules": "^6.4.0",
"prettier": "^2.1.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"resize-observer-polyfill": "^1.5.1",
"typescript": "^4.4.4"
}
}