forked from Nova-reward/Nova-Rewards
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.38 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
{
"name": "nova-rewards-frontend",
"version": "1.0.0",
"private": true,
"description": "NovaRewards Next.js frontend",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest --runInBand --coverage",
"test:ci": "jest --runInBand --ci --coverage --json --outputFile=test-results/results.json --reporters=default --reporters=jest-junit",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:a11y": "playwright test --project=accessibility",
"lint": "next lint",
"analyze": "ANALYZE=true next build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build -o storybook-static"
},
"dependencies": {
"@hookform/resolvers": "^5.5.7",
"@sentry/nextjs": "^10.50.0",
"@stellar/freighter-api": "^2.0.0",
"axios": "^1.7.2",
"canvas-confetti": "^1.9.4",
"framer-motion": "^12.43.0",
"jwt-decode": "^4.0.0",
"lucide-react": "^1.22.0",
"next": "^15.5.15",
"next-i18next": "^14.0.3",
"next-themes": "^0.4.6",
"react": "^18.3.1",
"react-dom": "^19.2.8",
"react-hook-form": "^7.52.0",
"react-joyride": "^3.1.0",
"recharts": "^3.8.1",
"socket.io-client": "^4.7.5",
"stellar-sdk": "^13.3.0",
"swr": "^2.4.2",
"tailwind-merge": "^2.6.1",
"zod": "^4.3.6",
"zustand": "^4.5.2"
},
"devDependencies": {
"@axe-core/playwright": "^4.12.1",
"@next/bundle-analyzer": "^16.2.7",
"@playwright/test": "^1.61.1",
"@storybook/addon-a11y": "^10.4.1",
"@storybook/addon-essentials": "^8.1.0",
"@storybook/addon-interactions": "^8.1.0",
"@storybook/nextjs": "^10.5.5",
"@storybook/react": "^10.5.2",
"@storybook/test": "^8.1.0",
"@swc/jest": "^0.2.39",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^26.2.0",
"@types/react": "19.2.17",
"autoprefixer": "^10.5.4",
"eslint": "^8.57.0",
"eslint-config-next": "^15.5.15",
"jest": "^29.7.0",
"jest-axe": "^9.0.0",
"jest-environment-jsdom": "^30.3.0",
"jest-junit": "^17.0.0",
"postcss": "^8.5.21",
"storybook": "^8.1.0",
"tailwindcss": "^3.4.4",
"typescript": "5.8.2"
},
"jest-junit": {
"outputDirectory": "test-results",
"outputName": "junit.xml"
}
}