forked from Commitlabs-Org/Commitlabs-Frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.2 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "commitlabs-frontend",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=20.0.0 <21.0.0",
"pnpm": ">=9.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"deadcode": "knip",
"circular": "madge --circular --extensions ts,tsx src",
"size": "size-limit",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"test:contracts:deploy": "node contracts/scripts/deploy-testnet.smoke.mjs",
"seed:mock": "tsx scripts/seed-backend-mock.ts",
"test:e2e": "playwright test",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"bash -c 'tsc --noEmit'"
]
},
"dependencies": {
"@stellar/freighter-api": "^1.6.0",
"@stellar/stellar-sdk": "^11.2.2",
"@tailwindcss/postcss": "^4.1.18",
"clsx": "^2.1.1",
"framer-motion": "^12.29.2",
"lucide-react": "^0.563.0",
"next": "^14.0.0",
"next-themes": "^0.4.6",
"postcss": "^8.5.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.5.0",
"recharts": "^3.7.0",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"zod": "^4.3.6"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@playwright/test": "^1.61.1",
"@size-limit/file": "^12.1.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20.19.33",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/ui": "^2.1.8",
"eslint": "^8.0.0",
"eslint-config-next": "^14.0.0",
"happy-dom": "^20.7.0",
"husky": "^9.1.7",
"ioredis": "^5.11.0",
"lint-staged": "^15.2.10",
"jsdom": "^29.1.1",
"knip": "^6.23.0",
"madge": "^8.0.0",
"node-fetch": "^3.3.2",
"size-limit": "^12.1.0",
"tsx": "^4.21.0",
"typescript": "^5.0.0",
"vite": "^5.4.11",
"vitest": "^2.1.8"
}
}