-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.36 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
{
"name": "jobber-site",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next experimental-compile",
"start": "next start",
"lint": "next lint",
"docs": "npx typeconv -f ts -t oapi -o openapi 'src/**/*.ts' && npx prettier --write .",
"build-prod": "bash build-prod.sh"
},
"dependencies": {
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.15.10",
"@mui/material": "^5.15.10",
"@mui/material-nextjs": "^5.15.9",
"@tanstack/react-query": "^5.20.2",
"@types/swagger-ui-react": "^4.18.3",
"better-sqlite3": "^9.4.3",
"kysely": "^0.27.1",
"next": "14.1.1-canary.55",
"nuqs": "^1.17.0",
"radash": "^11.0.0",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.48.2",
"swagger-ui-react": "^5.11.8",
"xmlbuilder2": "^3.1.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.9",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.0.3",
"postcss": "^8",
"sass": "^1.69.5",
"tailwindcss": "^3.3.0",
"typescript": "^5"
}
}