-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 996 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 996 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
36
37
{
"name": "unconditional",
"version": "0.2.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "npx prettier --write .",
"generate": "openapi --input $UNCONDITIONAL_API_PATH/api/swagger.yaml --output ./generated",
"prepare": "npx husky install"
},
"dependencies": {
"@tailwindcss/typography": "^0.5.19",
"@vercel/analytics": "^0.1.11",
"autoprefixer": "^10.5.0",
"next": "16.2.4",
"openapi-typescript-codegen": "^0.30.0",
"postcss": "^8.5.12",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-icons": "^4.12.0",
"react-is": "^18.3.1",
"styled-components": "^5.3.11",
"swr": "^2.4.1",
"tailwindcss": "^3.4.19"
},
"devDependencies": {
"@types/node": "18.19.130",
"@types/react": "18.3.13",
"@types/react-dom": "18.3.1",
"eslint": "9.39.4",
"eslint-config-next": "12.3.7",
"typescript": "4.9.5"
}
}