forked from Lilly-Protocol/lily-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.32 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
{
"name": "lily-frontend",
"version": "0.1.0",
"private": true,
"packageManager": "npm@10.9.4",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"test:e2e": "playwright test",
"dev": "next dev",
"build": "next build",
"start": "next start",
"clean": "rimraf .next coverage tsconfig.tsbuildinfo",
"format": "prettier --write .",
"lint": "eslint .",
"format:check": "prettier --check .",
"typecheck": "next typegen && tsc --noEmit",
"test": "vitest",
"test:run": "vitest run --coverage",
"check": "npm run lint && npm run typecheck && npm run test:run && npm run build"
},
"dependencies": {
"next": "16.3.3",
"react": "19.2.8",
"react-dom": "19.2.8",
"serwist": "^9.5.12"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vercel/og": "^1.0.2",
"@vitest/coverage-v8": "^4.0.8",
"clsx": "^2.1.1",
"eslint": "^10",
"eslint-config-next": "16.3.3",
"jsdom": "^30.0.1",
"prettier": "^3.9.6",
"prettier-plugin-tailwindcss": "^0.8.1",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^4.1.11"
}
}