-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 4.31 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 4.31 KB
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
128
129
{
"name": "mitein",
"private": true,
"description": "A platform to connect and learn",
"version": "0.1.0",
"license": "GNU Affero General Public License v3.0",
"main": "functions.js",
"scripts": {
"build": "next build",
"clean": "rm -rf .next",
"dev": "next dev -p 8000",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "next start",
"start-emulator": "firebase emulators:start --import=./firebase-emulator-data --export-on-exit",
"stop-emulator": "lsof -t -i :5001 -i:5002 -i:5003 -i:5004 -i:5005 | xargs kill -9",
"test": "jest",
"test-watch": "jest --watch",
"lint": "eslint src",
"lint-functions": "eslint ./functions",
"serve-functions": "firebase emulators:start --only functions",
"functions-shell": "firebase functions:shell",
"start-functions": "npm run shell",
"deploy-functions": "firebase deploy --only functions",
"logs-functions": "firebase functions:log",
"prepare": "husky install"
},
"engines": {
"node": "16"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/eslint-parser": "^7.18.2",
"@babel/preset-env": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@graphql-tools/jest-transform": "^1.2.0",
"@svgr/webpack": "^6.2.0",
"@testing-library/dom": "^8.14.0",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^14.4.3",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^27.4.6",
"babel-loader": "^8.0.0",
"eslint": "^8.19.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"firebase-functions-test": "^2.1.0",
"husky": "^7.0.0",
"jest": "^27.4.7",
"prettier": "^2.7.1",
"react-test-renderer": "^17.0.1"
},
"dependencies": {
"@apollo/client": "^3.6.9",
"@fullcalendar/daygrid": "^5.1.0",
"@fullcalendar/interaction": "^5.2.0",
"@fullcalendar/react": "^5.1.0",
"@fullcalendar/timegrid": "^5.1.0",
"@google-cloud/pubsub": "^2.16.0",
"add": "^2.0.6",
"apollo-server-micro": "^2.25.0",
"axios": "^0.27.2",
"babel-plugin-transform-require-ignore": "^0.1.1",
"classnames": "^2.2.6",
"firebase": "^9.9.0",
"firebase-admin": "^10.3.0",
"firebase-functions": "^3.22.0",
"focus-trap-react": "^8.11.0",
"graphql": "^15.5.3",
"graphql-extensions": "^0.15.0",
"graphql-tag": "^2.11.0",
"isomorphic-fetch": "^2.2.1",
"js-cookie": "^2.2.1",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^2.1.4",
"micro-cors": "^0.1.1",
"next": "^12.2.0",
"next-i18next": "^11.0.0",
"next-transpile-modules": "^9.0.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.33.1",
"react-router-dom": "^5.3.0",
"react-toastify": "^9.0.5",
"seamless-scroll-polyfill": "^2.2.0",
"sib-api-v3-sdk": "^8.4.0",
"uuid": "^8.3.2",
"winston": "^3.8.1",
"winston-transport-sentry-node": "^2.5.0"
},
"jest": {
"globalSetup": "<rootDir>unitTests/globalSetup.js",
"setupFilesAfterEnv": [
"<rootDir>unitTests/setupTests.js"
],
"moduleDirectories": [
"node_modules",
"unitTests",
"__dirname"
],
"moduleNameMapper": {
"\\.(scss|css|png|gif|jpg|jpeg|less|woff|woff2)$": "<rootDir>/__mocks__/styleMock.js",
"\\.svg": "<rootDir>/__mocks__/svg.js",
"^@api(.*)$": "<rootDir>/apiServer$1",
"^apollo(.*)$": "<rootDir>/src/apollo$1",
"^assets(.*)$": "<rootDir>/src/assets$1",
"^components(.*)$": "<rootDir>/src/components$1",
"^content(.*)$": "<rootDir>/src/content$1",
"^@constants(.*)$": "<rootDir>/src/constants$1",
"^context(.*)$": "<rootDir>/src/context$1",
"^@graphql(.*)$": "<rootDir>/src/graphql$1",
"^helpers(.*)$": "<rootDir>/src/helpers$1",
"^hooks(.*)$": "<rootDir>/src/hooks$1",
"^locales(.*)$": "<rootDir>/src/locales$1",
"^pages(.*)$": "<rootDir>/src/pages$1",
"^scss(.*)$": "<rootDir>/src/scss$1",
"^routes(.*)$": "<rootDir>/src/routes$1",
"^unitTests(.*)$": "<rootDir>/unitTests$1"
},
"transform": {
"\\.(gql|graphql)$": "@graphql-tools/jest-transform",
".*": "babel-jest"
},
"testEnvironment": "jsdom"
}
}