forked from 21gifts/app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.01 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
{
"name": "@21gifts/app",
"version": "0.1.0",
"private": true,
"description": "Web frontend client for 21.gifts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/21gifts/app.git"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"start:standalone": "rm -rf .next/standalone/.next/static .next/standalone/public && cp -r .next/static .next/standalone/.next/static && cp -r public .next/standalone/public && node .next/standalone/server.js",
"typecheck": "tsc --noEmit",
"lint": "next lint && prettier --check .",
"lint:fix": "next lint --fix && prettier --write .",
"format": "prettier --write .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"e2e": "playwright test",
"e2e:update-snapshots": "playwright test e2e/visual.spec.ts --update-snapshots",
"handbook:images": "UPDATE_HANDBOOK_IMAGES=1 playwright test e2e/handbook-capture.spec.ts",
"handbook:check": "node scripts/check-handbook.mjs",
"e2e:check": "node scripts/check-e2e.mjs",
"screenshot:check": "node scripts/check-screenshots.mjs"
},
"dependencies": {
"lucide-react": "^0.469.0",
"next": "^15.3.0",
"qrcode.react": "^4.2.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"zod": "^3.23.8",
"zustand": "^5.0.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@playwright/test": "^1.49.1",
"@tailwindcss/postcss": "^4.1.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.1.0",
"@types/node": "^22.10.2",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^9.17.0",
"eslint-config-next": "^15.3.0",
"eslint-plugin-tsdoc": "^0.4.0",
"jsdom": "^25.0.1",
"prettier": "^3.4.2",
"tailwindcss": "^4.1.0",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=20"
}
}