-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
96 lines (96 loc) · 2.74 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "veganify",
"version": "0.1.0",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start -p 1030",
"stage": "next start -p 1031",
"lint": "next lint",
"lint:fix": "next lint --fix",
"type-check": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:e2e": "playwright test"
},
"packageManager": "[email protected]",
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@ducanh2912/next-pwa": "^10.2.9",
"@ericblade/quagga2": "^1.8.4",
"@frontendnetwork/veganify": "^1.3.0",
"@types/node": "22.8.1",
"@types/react-dom": "npm:[email protected]",
"jest-worker": "^29.7.0",
"million": "^2.6.4",
"next": "15.0.1",
"next-intl": "^3.25.1",
"nookies": "^2.5.2",
"prom-client": "^15.1.3",
"react": "19.0.0-rc-69d4b800-20241021",
"react-dom": "19.0.0-rc-69d4b800-20241021",
"sass": "^1.81.0",
"sharp": "^0.33.5",
"typescript": "5.6.3"
},
"devDependencies": {
"@playwright/test": "^1.48.2",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.14",
"@types/react": "npm:[email protected]",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"@typescript-eslint/typescript-estree": "^8.14.0",
"eslint": "9.13.0",
"eslint-config-next": "15.0.1",
"eslint-config-sznm": "^2.0.3",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react-compiler": "19.0.0-beta-63b359f-20241101",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-node": "^10.9.2"
},
"volta": {
"node": "20.0.0"
},
"pnpm": {
"overrides": {
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]",
"eslint": "9.13.0",
"react": "19.0.0-rc-69d4b800-20241021",
"react-dom": "19.0.0-rc-69d4b800-20241021",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"@typescript-eslint/typescript-estree": "^8.11.0",
"uuid": "3.4.0",
"request": "2.88.2",
"core-js": "^3.36.0",
"glob": "^10.3.10",
"sourcemap-codec": "^1.4.8"
},
"peerDependencyRules": {
"allowedVersions": {
"eslint": "9.13.0",
"react": "19.0.0-rc-69d4b800-20241021"
},
"ignoreMissing": [
"@babel/core",
"webpack",
"react",
"react-dom",
"eslint"
]
}
}
}