-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.32 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.32 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
{
"name": "myds-gen",
"version": "0.0.1",
"description": "",
"main": "",
"scripts": {
"fastapi-local": "uv sync && uv run uvicorn api.index:app --reload",
"fastapi-dev": "pip3 install -r requirements.txt && python3 -m uvicorn api.index:app --reload",
"next-dev": "next dev",
"dev-local": "concurrently \"npm run next-dev\" \"npm run fastapi-local\"",
"dev": "concurrently \"npm run next-dev\" \"npm run fastapi-dev\"",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/govtechmy/myds-gen.git"
},
"author": "",
"bugs": {
"url": "https://github.com/govtechmy/myds-gen/issues"
},
"homepage": "https://github.com/govtechmy/myds-gen#readme",
"dependencies": {
"@govtechmy/myds-react": "^0.0.22",
"@govtechmy/myds-style": "^0.0.10",
"@stackblitz/sdk": "^1.11.0",
"@types/node": "22.5.5",
"@types/react": "18.3.8",
"@types/react-dom": "18.3.0",
"@vercel/node": "5.1.12",
"autoprefixer": "10.4.20",
"concurrently": "^9.0.1",
"dotenv": "^16.4.7",
"eslint": "^9.21.0",
"eslint-config-next": "15.2.2",
"next": "^14.2.13",
"postcss": "^8.4.47",
"react": "18.3.1",
"react-dom": "18.3.1",
"tailwindcss": "3.4.12",
"typescript": "^5.8.2"
}
}