-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.1 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
{
"name": "swagger-editor-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --write",
"fix": "npm run lint:fix && npm run format",
"prepare": "husky",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,scss,md,mdx}": [
"prettier --write"
]
},
"dependencies": {
"@apidevtools/swagger-parser": "^12.1.0",
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@hookform/resolvers": "^5.4.0",
"@monaco-editor/react": "^4.7.0",
"@mui/icons-material": "^9.1.1",
"@mui/material": "^9.1.2",
"@mui/material-nextjs": "^9.1.1",
"@supabase/ssr": "^0.12.0",
"@supabase/supabase-js": "^2.110.2",
"next": "16.2.9",
"next-intl": "^4.13.0",
"openapi-types": "^12.1.3",
"react": "19.2.7",
"react-dom": "19.2.7",
"react-hook-form": "^7.81.0",
"yaml": "^2.9.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@commitlint/cli": "^21.1.0",
"@commitlint/config-conventional": "^21.1.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/node": "^26",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^6.0.3",
"@vitest/coverage-v8": "^4.1.9",
"@vitest/eslint-plugin": "^1.6.20",
"babel-plugin-react-compiler": "1.0.0",
"eslint": "^9.39.4",
"eslint-config-next": "16.2.9",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-perfectionist": "^5.9.1",
"eslint-plugin-testing-library": "^7.16.2",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"lint-staged": "^17.0.8",
"npm-check-updates": "^22.2.7",
"prettier": "^3.8.4",
"typescript": "^6",
"vitest": "^4.1.9"
}
}