-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.82 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
{
"name": "diffractwd.com",
"version": "6.0.0",
"private": true,
"type": "module",
"description": "DiffractWD Website v6.0",
"author": {
"name": "Volodymyr Vreshch",
"email": "vreshch@gmail.com",
"url": "https://vreshch.com"
},
"homepage": "https://diffractwd.com",
"repository": {
"type": "git",
"url": "git+https://github.com/vreshch/diffractwd.com.git"
},
"license": "MIT",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p 3001",
"lint": "next lint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:unit": "vitest run",
"test:watch": "vitest",
"test:e2e": "npx playwright test",
"test:e2e:ui": "npx playwright test --ui",
"verify": "npx tsc --noEmit && next lint && npm run build && vitest run"
},
"dependencies": {
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"next": "^15.5.19",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"sharp": "^0.35.2",
"tailwind-merge": "^3.6.0"
},
"devDependencies": {
"@playwright/test": "^1.61.0",
"@tailwindcss/postcss": "^4.3.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^22.19.21",
"@types/react": "^19.2.17",
"@typescript-eslint/eslint-plugin": "^8.61.1",
"@typescript-eslint/parser": "^8.33.1",
"@vitejs/plugin-react": "^5.2.0",
"autoprefixer": "^10.5.0",
"eslint": "^9.39.4",
"eslint-config-next": "^15.5.19",
"eslint-config-prettier": "^10.1.5",
"jsdom": "^28.1.0",
"pixelmatch": "^7.2.0",
"pngjs": "^7.0.0",
"postcss": "^8.5.15",
"prettier": "^3.8.4",
"tailwindcss": "^4.1.8",
"typescript": "5.9.3",
"vitest": "^4.1.9"
}
}