-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.08 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
{
"name": "clustering-notes",
"version": "1.0.0",
"description": "Clustering Sticky Notes",
"main": "index.js",
"scripts": {
"dev": "concurrently \"vite --port 5173\" \"json-server db.json --port 3001\"",
"api": "json-server db.json --port 3001",
"client": "vite --port 5173",
"test": "vitest run",
"test:watch": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fx2000/clustering-notes.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fx2000/clustering-notes/issues"
},
"homepage": "https://github.com/fx2000/clustering-notes#readme",
"dependencies": {
"@tailwindcss/vite": "^4.2.2",
"@vitejs/plugin-react": "^6.0.1",
"concurrently": "^9.2.1",
"json-server": "^1.0.0-beta.15",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwindcss": "^4.2.2",
"vite": "^8.0.7"
},
"devDependencies": {
"@types/node": "^25.5.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"typescript": "^6.0.2",
"vitest": "^4.1.4"
}
}