-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.42 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
{
"name": "lumen",
"version": "0.0.2",
"license": "MIT",
"scripts": {
"nx": "nx",
"start": "node ./dist/apps/backend/main",
"start:dev": "nx run-many --target=serve --projects=frontend,backend --parallel=2",
"build": "nx run-many --target=build --configuration=production --all --parallel=2",
"migrations:generate": "ts-node --project ./apps/backend/tsconfig.app.json ./apps/backend/src/app/config/generate-migrations.ts",
"seed:generate": "ts-node --project ./apps/backend/tsconfig.app.json ./apps/backend/src/app/config/generate-seeder.ts",
"seed:run": "ts-node --project ./apps/backend/tsconfig.app.json ./apps/backend/src/app/config/run-seed.ts",
"test": "nx test"
},
"engines": {
"npm": ">=7.0.0",
"node": "16.x.x"
},
"private": true,
"dependencies": {
"@auth0/auth0-react": "^1.10.2",
"@azure/arm-mediaservices": "^12.0.0",
"@azure/identity": "^2.1.0",
"@azure/storage-blob": "^12.11.0",
"@date-io/date-fns": "^2.14.0",
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@mikro-orm/core": "^5.2.3",
"@mikro-orm/migrations": "^5.2.3",
"@mikro-orm/postgresql": "^5.2.3",
"@mikro-orm/seeder": "^5.2.3",
"@mui/icons-material": "^5.8.4",
"@mui/lab": "^5.0.0-alpha.90",
"@mui/material": "^5.8.5",
"@mui/x-date-pickers": "^5.0.0-beta.0",
"@react-spring/parallax": "^9.5.2",
"@tiptap/react": "^2.0.0-beta.114",
"@tiptap/starter-kit": "^2.0.0-beta.191",
"@types/inline-css": "^3.0.1",
"apexcharts": "^3.35.3",
"axios": "^0.27.2",
"core-js": "^3.6.5",
"date-fns": "^2.28.0",
"disable-devtool": "^0.2.5",
"dotenv": "^16.0.1",
"ejs": "^3.1.8",
"express": "4.17.2",
"express-jwt": "^7.7.5",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^2.1.4",
"morgan": "^1.10.0",
"nodemailer": "^6.7.7",
"pdf-lib": "^1.17.1",
"react": "18.1.0",
"react-apexcharts": "^1.4.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.1.0",
"react-hook-form": "^7.33.1",
"react-query": "^3.39.1",
"react-router-dom": "6.3.0",
"react-spring": "^9.5.2",
"react-timer-hook": "^3.0.5",
"react-use": "^17.4.0",
"regenerator-runtime": "0.13.7",
"stripe": "^9.15.0",
"tslib": "^2.3.0",
"use-debounce": "^8.0.3",
"uuid": "^8.3.2",
"yup": "^0.32.11"
},
"devDependencies": {
"@nrwl/cli": "14.1.9",
"@nrwl/eslint-plugin-nx": "14.1.9",
"@nrwl/express": "^14.1.9",
"@nrwl/jest": "14.1.9",
"@nrwl/linter": "14.1.9",
"@nrwl/node": "14.1.9",
"@nrwl/react": "14.1.9",
"@nrwl/web": "14.1.9",
"@nrwl/workspace": "14.1.9",
"@testing-library/react": "13.1.1",
"@types/express": "4.17.13",
"@types/jest": "27.4.1",
"@types/node": "16.11.7",
"@types/react": "^18.0.8",
"@types/react-dom": "18.0.3",
"@types/react-router-dom": "5.3.3",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "~5.18.0",
"@typescript-eslint/parser": "~5.18.0",
"babel-jest": "27.5.1",
"eslint": "~8.12.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "4.5.0",
"jest": "27.5.1",
"nx": "14.1.9",
"prettier": "^2.5.1",
"react-test-renderer": "18.1.0",
"ts-jest": "27.1.4",
"ts-node": "9.1.1",
"typescript": "~4.6.2"
}
}