-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.42 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
{
"name": "veganify",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start -p 1030",
"stage": "next start -p 1031",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"ultracite:fix": "ultracite fix",
"type-check": "tsc --noEmit && tsc --noEmit --project tsconfig.test.json",
"test": "bun test src/components",
"test:watch": "bun test --watch src/components",
"test:coverage": "bun test --coverage src/components",
"test:e2e": "bunx playwright test",
"check": "concurrently -c \"#FF8700,#5DE4C7,#A8E6CF,#ADD7FF\" -n lint,types,unit \"bun run lint\" \"bun run type-check\" \"bun test src/components --concurrent --timeout=10000 --reporter=dots --bail\"",
"check:code": "ultracite check",
"prepare": "husky",
"lint-staged": "lint-staged"
},
"packageManager": "bun@1.3.13",
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,scss}": [
"biome check --write --no-errors-on-unmatched"
]
},
"dependencies": {
"@ericblade/quagga2": "^1.12.1",
"@frontendnetwork/veganify": "^2.1.1",
"@types/node": "25.9.2",
"@types/react-dom": "19.2.3",
"next": "16.2.7",
"next-intl": "^4.13.0",
"react": "19.2.7",
"react-dom": "19.2.7",
"sass": "^1.101.0",
"sharp": "^0.34.5",
"typescript": "6.0.3"
},
"devDependencies": {
"@biomejs/biome": "2.4.16",
"@playwright/test": "^1.60.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/bun": "^1.3.14",
"@types/react": "19.2.17",
"concurrently": "^10.0.3",
"happy-dom": "^20.10.2",
"husky": "^9.1.7",
"lint-staged": "^17.0.7",
"ultracite": "7.8.2"
},
"volta": {
"node": "20.0.0"
},
"overrides": {
"@types/react": "19.2.16",
"@types/react-dom": "19.2.3",
"react": "19.2.7",
"react-dom": "19.2.7",
"core-js": "^3.36.0",
"glob": "^10.5.0",
"sourcemap-codec": "^1.4.8",
"@babel/helpers": ">=7.26.10",
"@babel/runtime": ">=7.26.10",
"diff": ">=4.0.4",
"form-data": ">=2.5.4",
"qs": ">=6.14.1",
"flatted": ">=3.4.2",
"postcss": ">=8.5.10",
"glob>minimatch": "^9.0.9",
"minimatch>brace-expansion": "^2.0.3",
"tinyglobby>picomatch": "^4.0.4"
},
"trustedDependencies": [
"@parcel/watcher",
"@swc/core",
"unrs-resolver"
]
}