-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.98 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.98 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
{
"name": "onlaunch",
"version": "0.1.0",
"private": true,
"scripts": {
"cypress:ci": "cypress run",
"dev": "next dev",
"build": "yarn generate:docs && next build",
"format": "prettier --write \"**/*.ts\"",
"generate:docs": "next-swagger-doc-cli next-swagger-doc.json --output ./public/openapi.json",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:ci": "jest --ci --coverage",
"test:e2e:ci": "start-server-and-test start http://0.0.0.0:3000 cypress:ci",
"test:watch": "jest --watch",
"prepare": "husky"
},
"dependencies": {
"@chakra-ui/icons": "2.2.4",
"@chakra-ui/react": "2.10.9",
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.1",
"@fontsource-variable/plus-jakarta-sans": "5.2.8",
"@opentelemetry/api": "1.9.0",
"@prisma/client": "6.19.0",
"@prisma/instrumentation": "6.19.0",
"@sentry/cli": "2.58.5",
"@sentry/nextjs": "10.35.0",
"@stripe/react-stripe-js": "3.10.0",
"@stripe/stripe-js": "7.9.0",
"@types/bcrypt": "5.0.2",
"autoprefixer": "10.4.27",
"base64url": "3.0.1",
"bcrypt": "5.1.1",
"cal-sans": "1.0.1",
"chart.js": "4.5.1",
"class-transformer": "0.5.1",
"class-validator": "0.14.3",
"dotenv": "17.2.3",
"formik": "2.4.9",
"framer-motion": "12.23.25",
"http-status-codes": "2.3.0",
"ioredis": "5.8.2",
"js-yaml": "4.1.1",
"luxon": "3.7.2",
"mobx": "6.15.0",
"moment": "2.30.1",
"next": "15.4.8",
"next-auth": "4.24.13",
"next-swagger-doc": "0.4.1",
"nodemailer": "7.0.13",
"postcss": "8.5.6",
"ramda": "0.32.0",
"react": "18.3.1",
"react-chartjs-2": "5.3.1",
"react-dom": "18.3.1",
"react-icons": "5.5.0",
"redoc": "2.5.2",
"reflect-metadata": "0.2.2",
"request-ip": "3.3.0",
"stripe": "17.7.0",
"styled-components": "6.1.19",
"swr": "2.3.8",
"use-debounce": "10.0.6",
"uuid": "13.0.0",
"yup": "1.7.1"
},
"devDependencies": {
"@jest/globals": "29.7.0",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/jest": "29.5.14",
"@types/js-yaml": "4.0.9",
"@types/node": "24.10.9",
"@types/ramda": "0.31.1",
"@types/react": "18.3.27",
"@types/react-dom": "18.3.7",
"@types/request-ip": "0.0.41",
"core-js": "3.49.0",
"cypress": "15.13.1",
"eslint": "8.57.1",
"eslint-config-next": "15.5.15",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-mock-extended": "4.0.0",
"local-cypress": "1.2.8",
"next-router-mock": "1.0.5",
"node-mocks-http": "1.17.2",
"pinst": "3.0.0",
"prettier": "3.8.1",
"prisma": "6.19.0",
"start-server-and-test": "2.1.3",
"tailwindcss": "3.4.19",
"ts-node": "10.9.2",
"typescript": "5.9.3"
},
"resolutions": {
"@types/react": "18.3.27"
},
"packageManager": "yarn@4.12.0"
}