forked from scout-off/scout-off-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.09 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.09 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "scout-off-frontend",
"version": "0.1.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --passWithNoTests --maxWorkers=2 --workerIdleMemoryLimit=512MB",
"test:watch": "jest --watch",
"test:coverage": "jest --passWithNoTests --maxWorkers=2 --workerIdleMemoryLimit=512MB --coverage",
"typecheck": "tsc --noEmit",
"type-check": "tsc --noEmit --project tsconfig.typecheck.json",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,md,mdx}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,css,md,mdx}\"",
"prepare": "node -e \"if (process.env.CI !== 'true') { require('child_process').execSync('husky install', {stdio: 'inherit'}) }\"",
"postbuild": "next-sitemap",
"generate:icons": "node scripts/generate-icons.js",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@albedo-link/intent": "^0.13.0",
"@ledgerhq/hw-app-str": "^7.7.6",
"@ledgerhq/hw-transport-webhid": "^6.36.0",
"@lobstrco/signer-extension-api": "2.0.0",
"@sentry/nextjs": "^10.59.0",
"@stellar/freighter-api": "2.0.0",
"@stellar/stellar-sdk": "12.1.0",
"@upstash/redis": "^1.38.0",
"@vercel/analytics": "^2.0.0",
"axios": "1.7.2",
"better-sqlite3": "^12.11.1",
"dompurify": "^3.4.12",
"lucide-react": "^1.17.0",
"next": "14.2.35",
"next-intl": "^4.13.2",
"next-pwa": "5.6.0",
"postcss": "^8.5.19",
"qrcode": "1.5.4",
"react": "18.3.1",
"react-dom": "18.3.1",
"swr": "^2.4.1",
"tailwindcss": "^3.4.19",
"web-vitals": "^5.3.0"
},
"devDependencies": {
"@axe-core/react": "4.9.1",
"@playwright/test": "^1.61.1",
"@storybook/addon-essentials": "^8.6.14",
"@storybook/builder-vite": "^8.6.18",
"@storybook/nextjs": "^8.6.18",
"@storybook/react-vite": "^8.6.18",
"@tailwindcss/vite": "^4.3.3",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "6.4.6",
"@testing-library/react": "16.0.0",
"@testing-library/user-event": "14.4.3",
"@types/better-sqlite3": "^7.6.13",
"@types/dompurify": "^3.2.0",
"@types/jest": "29.5.5",
"@types/jest-axe": "^3.5.9",
"@types/minimatch": "^5.1.2",
"@types/node": "20.14.2",
"@types/qrcode": "1.5.6",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.5.4",
"eslint": "8.57.0",
"eslint-config-next": "14.2.3",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-axe": "^8.0.0",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "^14.0.0",
"next-sitemap": "4.2.3",
"prettier": "^3.8.1",
"storybook": "^8.6.18",
"typescript": "^6.0.3",
"vite": "^6.3.5",
"vite-tsconfig-paths": "^6.1.1"
},
"engines": {
"node": ">=24"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,md,mdx}": [
"prettier --write"
]
}
}