-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.22 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": "ui-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"generate:types": "openapi-typescript ../openapi.yaml -o lib/api/v1.d.ts",
"predev": "npm run generate:types",
"prebuild": "npm run generate:types"
},
"dependencies": {
"next": "^15.0.0-rc.0",
"react": "^19.0.0-rc",
"react-dom": "^19.0.0-rc",
"@headlessui/react": "^2.1.2",
"@heroicons/react": "^2.1.5",
"@tailwindcss/forms": "^0.5.7",
"dayjs": "^1.11.12",
"inter-ui": "^4.0.2",
"negotiator": "^0.6.3",
"next-auth": "^5.0.0-beta.20",
"next-intl": "^3.17.3",
"openapi-fetch": "^0.11.1",
"tailwindcss": "^3.4.1"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.5",
"eslint-config-prettier": "^9.1.0",
"openapi-typescript": "^7.3.0",
"postcss": "^8",
"prettier": "^3.3.3",
"prettier-plugin-classnames": "^0.7.2",
"prettier-plugin-organize-imports": "^4.0.0",
"prettier-plugin-tailwindcss": "^0.6.6",
"server-only": "^0.0.1",
"typescript": "^5"
}
}