-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
77 lines (77 loc) · 2.54 KB
/
package.json
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
{
"name": "poc-freighter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3001",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write \"src/**/*.ts\"",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --coverageThreshold='{\"global\":{\"branches\":70,\"functions\":70,\"lines\":70,\"statements\":70}}'",
"test:ci": "jest --ci --coverage --maxWorkers=2 --coverageThreshold='{\"global\":{\"branches\":70,\"functions\":70,\"lines\":70,\"statements\":70}}'",
"test:e2e:ci": "start-server-and-test start:test http://localhost:3001 test:e2e",
"start:test": "next start -p 3001",
"test:all": "pnpm test:ci && pnpm test:e2e:ci",
"type-check": "tsc --noEmit",
"test:e2e": "cypress run",
"test:e2e:open": "cypress open"
},
"dependencies": {
"@creit.tech/stellar-wallets-kit": "^1.2.1",
"@hookform/resolvers": "^3.9.0",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-navigation-menu": "^1.2.1",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-toast": "^1.2.2",
"@radix-ui/react-tooltip": "^1.1.3",
"@stellar/freighter-api": "^3.0.0",
"@stellar/stellar-sdk": "^12.3.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"axios": "^1.7.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"jest-environment-jsdom": "^29.7.0",
"lucide-react": "^0.447.0",
"next": "14.2.14",
"next-intl": "^3.25.1",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.53.0",
"react-icons": "^5.3.0",
"react-loader-spinner": "^6.1.6",
"styled-components": "^6.1.13",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"ts-node": "^10.9.2",
"zod": "^3.23.8",
"zustand": "^5.0.0-rc.2"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.9",
"@types/react": "^18",
"@types/react-dom": "^18",
"babel-jest": "^29.7.0",
"cypress": "^13.16.0",
"eslint": "^8.57.1",
"eslint-config-next": "14.2.14",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"postcss": "^8",
"prettier": "^3.3.3",
"start-server-and-test": "^2.0.8",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
}
}