-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 990 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 990 Bytes
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
{
"name": "modo-front",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"lint:fix": "next lint --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md,css,scss,html}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,md,css,scss,html}\"",
"generate:types": "bash scripts/generate-swagger-types.sh"
},
"dependencies": {
"@tanstack/react-query": "^5.90.11",
"next": "16.0.3",
"react": "19.2.0",
"react-dom": "19.2.0",
"swagger-ui-react": "^5.30.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@tanstack/eslint-plugin-query": "^5.91.2",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.0.3",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.6.2",
"tailwindcss": "^4",
"typescript": "^5"
}
}