-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.56 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.56 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
{
"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 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 0",
"test": "vitest --run",
"test:watch": "vitest",
"test:e2e": "playwright test"
},
"dependencies": {
"@allbridge/bridge-core-sdk": "^3.29.1",
"@sentry/nextjs": "^10.46.0",
"@stellar/freighter-api": "^6.0.1",
"@stellar/stellar-sdk": "^14.6.1",
"next": "^15.5.14",
"react": "19.0.0",
"react-dom": "19.0.0",
"stellar-sdk": "^13.3.0",
"viem": "^2.47.0"
},
"devDependencies": {
"@next/bundle-analyzer": "^16.2.1",
"@playwright/test": "^1.58.2",
"@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",
"eslint": "^9.39.3",
"eslint-config-next": "15.2.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^29.0.1",
"ts-jest": "^29.3.2",
"tailwindcss": "^4.2.1",
"typescript": "5.7.3",
"vitest": "^4.1.1"
}
}