-
Notifications
You must be signed in to change notification settings - Fork 113
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.74 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.74 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
101
102
103
104
105
106
{
"name": "clipsproject",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && node scripts/check-performance-budget.js",
"start": "next start",
"lint": "eslint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"lint:fix": "eslint --fix '**/*.{js,jsx,ts,tsx}'",
"cleanup": "npm run lint:fix && npx depcheck --json || true",
"test": "jest",
"test:a11y": "jest --runInBand __tests__/accessibility/a11y.test.tsx",
"test:integration": "jest --config jest.integration.config.js --runInBand",
"test:visual": "npx playwright test tests/e2e/visual.spec.ts",
"test:visual:update": "npx playwright test tests/e2e/visual.spec.ts --update-snapshots",
"test:e2e": "npx playwright test",
"test:coverage": "jest --coverage",
"test:coverage:integration": "jest --config jest.integration.config.js --coverage --runInBand",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "node -e \"if (!process.env.CI && process.env.NODE_ENV !== 'production') { try { require('child_process').execSync('husky', { stdio: 'inherit' }); } catch (e) {} }\"",
"changeset": "changeset",
"analyze": "ANALYZE=true next build",
"bundle:check": "node scripts/check-bundle-size.js",
"bundle:report": "node scripts/check-bundle-size.js --report",
"mutation": "stryker run",
"perf:test": "lhci autorun --config=./.lighthouserc.json"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.637.0",
"@prisma/client": "^6.1.0",
"@sentry/nextjs": "^10.55.0",
"@sentry/types": "^10.55.0",
"@simplewebauthn/browser": "^9.0.1",
"@simplewebauthn/server": "^9.0.2",
"@stellar/stellar-sdk": "^15.1.0",
"bip39": "^3.1.0",
"dompurify": "3.2.6",
"lucide-react": "^1.7.0",
"next": "16.2.2",
"next-auth": "^5.0.0-beta.31",
"react": "19.2.4",
"react-dom": "19.2.4",
"secrets.js-grempe": "^2.0.0",
"zod": "^3.23.8",
"zustand": "^5.0.12"
},
"devDependencies": {
"@changesets/cli": "^2.27.0",
"@chromatic-com/storybook": "^5.2.1",
"@next/bundle-analyzer": "^16.2.9",
"@playwright/experimental-ct-react": "^1.59.1",
"@playwright/test": "^1.59.1",
"@storybook/addon-a11y": "^10.4.1",
"@storybook/addon-docs": "^10.4.1",
"@storybook/addon-mcp": "^0.6.0",
"@storybook/addon-vitest": "^10.4.1",
"@storybook/nextjs-vite": "^10.4.1",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/browser-playwright": "^4.1.7",
"@vitest/coverage-v8": "^4.1.7",
"axe-core": "^4.11.2",
"eslint": "^9",
"eslint-config-next": "16.2.2",
"eslint-plugin-storybook": "^10.4.1",
"fast-check": "^3.23.2",
"husky": "^9.0.0",
"ioredis": "^5.4.0",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"lint-staged": "^15.0.0",
"pixelmatch": "^7.1.0",
"playwright": "^1.60.0",
"prettier": "^3.5.3",
"prisma": "^6.1.0",
"storybook": "^10.4.1",
"tailwindcss": "^4",
"typescript": "^5",
"vite": "^8.0.14",
"vitest": "^4.1.7",
"@stryker-mutator/core": "^5.0.0",
"@stryker-mutator/jest-runner": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint-plugin-unused-imports": "^3.1.0",
"eslint-plugin-no-commented-out-code": "^1.0.0",
"depcheck": "^1.4.0",
"@lhci/cli": "^0.10.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md}": [
"prettier --write --ignore-unknown",
"eslint --fix --no-warn-ignored"
]
}
}