-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
172 lines (172 loc) · 6.55 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
{
"name": "@chili-and-cilantro/source",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"new:secret": "node -e \"console.log (require('crypto').randomBytes(32).toString ('hex'));\"",
"build:all": "NODE_ENV=production npx nx run-many --target=build --all --configuration=production && yarn postbuild",
"build:all:dev": "NODE_ENV=development npx nx run-many --target=build --all --configuration=development && yarn postbuild",
"build:node": "npx nx build chili-and-cilantro-api && yarn postbuild",
"build:node:dev": "npx nx build chili-and-cilantro-api --configuration development && yarn postbuild",
"build:react": "npx nx build chili-and-cilantro-react",
"build:react:dev": "npx nx build chili-and-cilantro-react --configuration development",
"build:lib": "npx nx build chili-and-cilantro-lib chili-and-cilantro-node-lib && yarn postbuild",
"build:lib:dev": "npx nx build chili-and-cilantro-lib chili-and-cilantro-node-lib --configuration development && yarn postbuild",
"build:react:serve": "npx nx serve chili-and-cilantro-react",
"build": "yarn build:all",
"build:dev": "yarn build:all:dev",
"build-serve:dev": "yarn build:dev && yarn postbuild && yarn serve:dev",
"serve": "./kill-node.sh && NODE_ENV=production npx nx serve chili-and-cilantro-api --configuration production",
"serve:dev": "./kill-node.sh && NODE_ENV=development npx nx serve chili-and-cilantro-api --configuration development",
"test:all": "yarn test:jest && yarn test:e2e",
"test:jest": "NODE_ENV=development npx nx run-many --target=test --all --configuration=development",
"test:jest:nocache": "NODE_ENV=development npx nx run-many --target=test --all --configuration=development -- --no-cache",
"test:e2e": "npx nx e2e chili-and-cilantro-api-e2e --runInBand",
"test:e2e:single": "npx nx e2e chili-and-cilantro-api-e2e --runInBand --testFile",
"npm-globals": "npm install -g yarn @nrwl/cli npx nx jest",
"clean:all": "rm -rf node_modules dist/ ~/.cache && yarn cache clean && npx nx reset",
"migrate:latest": "npx nx migrate latest",
"migrate:run-migrations": "npx nx migrate --run-migrations",
"lint": "eslint '**/*.{ts,tsx}'",
"lint:fix": "eslint '**/*.{ts,tsx}' --fix",
"prettier:check": "prettier --check '**/*.{ts,tsx}'",
"prettier:fix": "prettier --write '**/*.{ts,tsx}'",
"commands": "./list-scripts.sh",
"postbuild": "cp ./chili-and-cilantro-api/.env ./dist/chili-and-cilantro-api/.env",
"initdb": "yarn build:dev && npx nx serve chili-and-cilantro-initdb",
"codacy:upload": "./codacy-upload.sh"
},
"private": true,
"resolutions": {
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.57.0",
"eslint-plugin-cypress": "^4.1.0"
},
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "^6.1.1",
"@mui/material": "^6.1.8",
"@mui/styles": "^6.1.1",
"@sendgrid/mail": "^8.1.3",
"@swc/helpers": "0.5.13",
"axios": "1.7.7",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"date-fns": "^3.6.0",
"date-fns-tz": "^3.1.3",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express-jwt": "^8.4.1",
"express-oauth2-jwt-bearer": "^1.6.0",
"express-validator": "^7.2.0",
"formik": "^2.4.6",
"helmet": "^7.0.0",
"helmet-csp": "^4.0.0",
"i18next": "^24.0.5",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-http-backend": "^3.0.1",
"jest-mock-extended": "^4.0.0-beta1",
"jsonwebtoken": "^9.0.2",
"jwks-rsa": "^3.1.0",
"jwt-decode": "^3.1.2",
"mongodb": "^6.8.0",
"mongoose": "^8.9.1",
"morgan": "^1.10.0",
"nocache": "^4.0.0",
"pusher": "^5.2.0",
"pusher-js": "^8.4.0-rc2",
"qrcode.react": "^4.2.0",
"react": "^18.3.1",
"react-dom": "18.3.1",
"react-i18next": "^15.1.3",
"react-router-dom": "^6.16.0",
"socket.io": "^4.7.2",
"socket.io-client": "^4.7.2",
"tslib": "^2.3.0",
"uuid": "^10.0.0",
"validator": "^13.11.0",
"yup": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@faker-js/faker": "^8.2.0",
"@jest/globals": "^29.7.0",
"@nx/cypress": "20.2.2",
"@nx/esbuild": "20.2.2",
"@nx/eslint": "20.2.2",
"@nx/eslint-plugin": "20.2.2",
"@nx/jest": "20.2.2",
"@nx/js": "20.2.2",
"@nx/node": "20.2.2",
"@nx/react": "20.2.2",
"@nx/webpack": "20.2.2",
"@nx/workspace": "20.2.2",
"@playwright/test": "^1.36.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@svgr/webpack": "^8.0.1",
"@swc-node/register": "~1.9.1",
"@swc/cli": "0.3.14",
"@swc/core": "1.5.7",
"@testing-library/react": "15.0.6",
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.14",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.3",
"@types/morgan": "^1.9.6",
"@types/node": "^22.9.3",
"@types/pusher-js": "^5.1.0",
"@types/qrcode.react": "^1.0.5",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-i18next": "^8.1.0",
"@types/react-router-dom": "^5.3.3",
"@types/sinon": "^17.0.1",
"@types/supertest": "^6.0.2",
"@types/supports-color": "^8.1.3",
"@types/uuid": "^10.0.0",
"@types/validator": "^13.11.3",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"@typescript-eslint/typescript-estree": "^8.16.0",
"babel-jest": "29.7.0",
"cypress": "13.15.0",
"esbuild": "0.19.9",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^4.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-playwright": "^2.0.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"has-flag": "^5.0.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-environment-node": "^29.7.0",
"jsonc-parser": "^3.3.1",
"moment-timezone": "^0.5.46",
"mongodb-memory-server": "^10.1.2",
"nx": "20.2.2",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"react-refresh": "^0.10.0",
"sinon": "^17.0.1",
"supertest": "^7.0.0",
"supports-color": "^9.4.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "5.3.3",
"url-loader": "^4.1.1",
"webpack": "^5.97.1"
},
"packageManager": "yarn@4.5.3",
"workspaces": [
"./chili-and-cilantro-lib",
"./chili-and-cilantro-node-lib"
]
}