-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.96 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
{
"name": "traininghub",
"version": "0.1.0",
"private": true,
"scripts": {
"_DEV SCRIPTS": "===",
"dev": "./scripts/dev_start.sh",
"dev:docker": "docker compose up -d --build",
"dev:next": "next dev",
"dev:install": "./scripts/dev_install.sh",
"_PRODUCTION SCRIPTS": "===",
"build": "next build",
"start": "next start",
"start:migrate": "prisma migrate deploy && npm run start",
"_TEST SCRIPTS": "===",
"test": "./scripts/dev_test.sh",
"test:watch": "jest --watch --runInBand",
"test:docker": "docker compose -f docker-compose.test.yml up -d --build",
"test:ci": "jest --ci --runInBand",
"_TEST CYPRESS SCRIPTS": "===",
"cypress:build": "APP_ENV='test' next build",
"cypress:start": "APP_ENV='test' next start",
"cypress:open": "./scripts/dev_test_cypress.sh",
"cypress:run": "./scripts/dev_test_cypress.sh runMode",
"_LINT SCRIPTS": "===",
"lint:write": "next lint --fix --dir .",
"lint:test": "next lint --dir .",
"_FORMAT SCRIPTS": "===",
"format:write": "prettier . --write --plugin=prettier-plugin-prisma --plugin=prettier-plugin-sort-json",
"format:test": "prettier . --check --plugin=prettier-plugin-prisma --plugin=prettier-plugin-sort-json",
"_LIFECYCLE SCRIPTS": "===",
"prepare": "node -e \"try { require('husky').install() } catch (e) {if (e.code !== 'MODULE_NOT_FOUND') throw e}\"",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --quiet --fix"
],
"*.{json,js,ts,jsx,tsx,html,prisma,md,yml,yaml}": [
"prettier --write --ignore-unknown --plugin=prettier-plugin-prisma --plugin=prettier-plugin-sort-json"
]
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@auth/prisma-adapter": "^1.0.10",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.8",
"@formatjs/intl-localematcher": "^0.5.2",
"@googleapis/calendar": "^9.3.2",
"@googleapis/forms": "^2.0.5",
"@hookform/resolvers": "^3.3.1",
"@mui/icons-material": "^5.14.19",
"@mui/material": "^5.15.5",
"@prisma/client": "^5.7.0",
"@sentry/nextjs": "^7.73.0",
"@tiptap/extension-image": "^2.1.16",
"@tiptap/extension-link": "^2.1.12",
"@tiptap/extension-text-align": "^2.1.13",
"@tiptap/extension-underline": "^2.1.12",
"@tiptap/pm": "^2.1.12",
"@tiptap/react": "^2.1.12",
"@tiptap/starter-kit": "^2.1.13",
"i18next": "^23.5.1",
"i18next-browser-languagedetector": "^7.1.0",
"i18next-resources-to-backend": "^1.2.0",
"isomorphic-dompurify": "^1.11.0",
"negotiator": "^0.6.3",
"next": "^13.5.6",
"next-auth": "^4.24.5",
"react": "^18.2.0",
"react-datepicker": "^4.24.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.46.2",
"react-i18next": "^13.5.0",
"zod": "^3.22.4",
"zod-i18n-map": "^2.21.0"
},
"devDependencies": {
"@testing-library/cypress": "^10.0.1",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.11",
"@types/negotiator": "^0.6.3",
"@types/node": "20.10.4",
"@types/react": "18.2.45",
"@types/react-datepicker": "^4.19.4",
"@types/react-dom": "18.2.17",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"cypress": "^13.5.0",
"dotenv-cli": "^7.3.0",
"eslint": "8.55.0",
"eslint-config-next": "^13.5.6",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-cypress": "^2.15.1",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-environment-node": "^29.7.0",
"lint-staged": "^14.0.1",
"node-mocks-http": "^1.13.0",
"prettier": "^3.1.1",
"prettier-plugin-prisma": "^5.0.0",
"prettier-plugin-sort-json": "^3.1.0",
"prisma": "^5.8.1",
"ts-node": "^10.9.1",
"typescript": "5.2.2"
}
}