-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.43 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
{
"name": "johan.li",
"version": "0.1.0",
"description": "",
"author": "Johan Li",
"license": "MIT",
"scripts": {
"start": "next dev --turbopack",
"tsc": "tsc --noEmit",
"test": "vitest run",
"lint": "eslint",
"prettier": "prettier --write app/ tests/",
"prebuild": "next telemetry disable",
"build": "next build",
"start:prod": "node .next/standalone/server.js",
"test:e2e": "playwright test",
"prepare": "husky"
},
"dependencies": {
"@headlessui/react": "^2.2.0",
"lodash.debounce": "^4.0.8",
"next": "15.1.0",
"prismjs": "^1.29.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"sharp": "0.33.2"
},
"devDependencies": {
"@googleapis/docs": "^3.3.0",
"@playwright/test": "^1.49.1",
"@types/node": "^20.17.10",
"@types/prismjs": "^1.26.5",
"@types/react": "19.0.1",
"autoprefixer": "^10.4.20",
"eslint": "^9",
"eslint-config-next": "15.1.0",
"eslint-config-prettier": "^9.1.0",
"@eslint/eslintrc": "^3",
"husky": "^9.1.7",
"jsdom": "^24.1.3",
"lint-staged": "^15.2.11",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.5.14",
"tailwindcss": "^3.4.16",
"typescript": "^5.7.2",
"vitest": "^1.6.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"pnpm": {
"overrides": {
"@types/react": "19.0.1"
}
}
}