-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.79 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.79 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
{
"name": "stellar-intel",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --max-warnings 0",
"lint:fix": "eslint --fix",
"typecheck": "tsc --noEmit",
"type-check": "tsc --noEmit",
"format": "prettier --write \"**/*.{ts,tsx,mjs,json,css,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,mjs,json,css,md}\"",
"test": "vitest run",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"test:release": "npm run typecheck && npm run lint && npm run format:check && npm run test && npm run build",
"prepare": "husky || true"
},
"lint-staged": {
"*.{ts,tsx,mjs}": [
"eslint --fix --max-warnings 0",
"prettier --write"
],
"*.{json,css,md,yml,yaml}": [
"prettier --write"
]
},
"dependencies": {
"@stellar/freighter-api": "^6.0.1",
"@stellar/stellar-sdk": "^14.6.1",
"clsx": "^2.1.1",
"lucide-react": "^1.11.0",
"next": "16.1.6",
"react": "19.2.3",
"react-dom": "19.2.3",
"swr": "^2.4.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"eslint-config-prettier": "^10.1.8",
"fast-check": "^4.7.0",
"jsdom": "^29.0.2",
"msw": "^2.13.2",
"prettier": "^3.8.2",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^4.1.4"
}
}