-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.26 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
{
"name": "colorbreak",
"private": true,
"version": "4.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"data:coverage": "node tools/report-coverage.mjs",
"data:diff": "node tools/source-diff.mjs",
"data:prices": "node tools/build-price-snapshot.mjs",
"data:sealed-prices": "node tools/build-sealed-price-snapshot.mjs",
"check:data": "node tools/report-coverage.mjs --check",
"check:prices": "node tools/build-price-snapshot.mjs --check",
"check:sealed-prices": "node tools/build-sealed-price-snapshot.mjs --check",
"check": "npm run test && npm run check:data && npm run check:prices && npm run check:sealed-prices && npm run build"
},
"dependencies": {
"lucide-react": "^0.468.0",
"motion": "^12.23.12",
"react": "^19.1.1",
"react-dom": "^19.1.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/node": "^22.10.2",
"@types/react": "^19.0.3",
"@types/react-dom": "^19.0.2",
"@vitejs/plugin-react": "^6.0.5",
"jsdom": "^30.0.1",
"typescript": "^7.0.2",
"vite": "^8.2.1",
"vitest": "^4.1.10"
}
}