forked from Lex-Studios/Stellar-Spend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.41 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
{
"name": "stellar-spend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "node ./scripts/run-next.cjs dev --hostname localhost --port 3001",
"build": "node ./scripts/run-next.cjs build",
"build:analyze": "ANALYZE=true node ./scripts/run-next.cjs build",
"start": "node ./scripts/run-next.cjs start",
"lint": "npx -y -p eslint@9.39.4 -p @typescript-eslint/parser@8.46.1 -p @typescript-eslint/eslint-plugin@8.46.1 -p eslint-plugin-react@7.37.5 -p eslint-plugin-react-hooks@5.2.0 -p @next/eslint-plugin-next@15.2.0 eslint . --max-warnings 50",
"test": "vitest --run",
"test:watch": "vitest",
"test:coverage": "vitest --run --coverage",
"test:e2e": "playwright test",
"test:mutation": "stryker run",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test-storybook": "test-storybook"
},
"dependencies": {
"@allbridge/bridge-core-sdk": "^3.29.1",
"@aws-sdk/client-cloudwatch-logs": "3.758.0",
"@sentry/nextjs": "^10.46.0",
"@stellar/freighter-api": "^6.0.1",
"@stellar/stellar-sdk": "^14.6.1",
"@zxing/browser": "^0.2.0",
"isomorphic-dompurify": "^2.11.0",
"next": "^15.5.14",
"pg": "^8.21.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"viem": "^2.47.0",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@next/bundle-analyzer": "^16.2.1",
"@playwright/test": "^1.58.2",
"@stryker-mutator/core": "^7.3.0",
"@stryker-mutator/typescript-checker": "^7.3.0",
"@tailwindcss/postcss": "^4.2.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "22.13.5",
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.1",
"eslint": "^9.39.3",
"eslint-config-next": "15.2.0",
"jsdom": "^29.0.1",
"node-mocks-http": "^1.14.1",
"tailwindcss": "^4.2.1",
"typescript": "5.7.3",
"vitest": "^4.1.1",
"storybook": "^10.4.6",
"@storybook/nextjs-vite": "^10.4.6",
"@chromatic-com/storybook": "^5.2.1",
"@storybook/addon-vitest": "^10.4.6",
"@storybook/addon-a11y": "^10.4.6",
"@storybook/addon-docs": "^10.4.6",
"@storybook/addon-mcp": "^0.6.0",
"vite": "^8.1.0",
"eslint-plugin-storybook": "^10.4.6",
"playwright": "^1.61.1",
"@vitest/browser-playwright": "^4.1.1"
}
}