generated from pt-icp-hub/IC-Vibe-Coding-Template-Motoko
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.83 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.83 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "vibe-icp",
"version": "1.0.0",
"description": "Internet Computer Protocol (ICP) project using Rust and Typescript for canister development, with Vibe Coding workflows",
"main": "index.js",
"type": "module",
"workspaces": [
"src/frontend",
"src/admin"
],
"scripts": {
"lint": "prettier --check .",
"format": "prettier --write .",
"build": "npm run build --workspace=admin && npm run build --workspace=frontend",
"start": "npm start --workspaces --if-present",
"start:frontend": "npm run start -w frontend",
"start:admin": "npm run start -w admin",
"test": "npm run test:backend && npm run test:frontend",
"test:frontend": "npm test --workspace=frontend",
"test:backend": "vitest run -c tests/vitest.config.ts",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@dfinity/pic": "^0.13.1",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.14.1",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.1",
"concurrently": "^9.0.1",
"cross-fetch": "^4.1.0",
"firebase-tools": "^14.22.0",
"husky": "^9.1.7",
"ic-mops": "^1.8.0",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.5.7",
"typescript": "^5.8.3",
"vite": "^6.3.6",
"vite-plugin-environment": "^1.1.3",
"vitest": "^3.2.4"
},
"dependencies": {
"@headlessui/react": "^2.2.7",
"@tanstack/react-query": "^5.84.1",
"@vis.gl/react-google-maps": "^1.5.5",
"bad-words": "^4.0.0",
"leaflet": "^1.9.4",
"ollama": "^0.6.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-leaflet": "^5.0.0",
"react-router-dom": "^7.9.4",
"recharts": "^3.1.0",
"sonner": "^2.0.7",
"ua-parser-js": "^2.0.4",
"zustand": "^5.0.8"
}
}