-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 958 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 958 Bytes
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
{
"name": "30-days-agentic-coding",
"private": true,
"type": "module",
"scripts": {
"dev": "nuxt dev",
"build": "nuxt build",
"generate": "nuxt generate",
"preview": "nuxt preview",
"lint": "eslint .",
"typecheck": "nuxt typecheck",
"prepare": "husky",
"postinstall": "nuxt prepare"
},
"lint-staged": {
"*.{ts,vue,js,mjs}": "eslint --fix"
},
"dependencies": {
"@nuxt/content": "^3.12.0",
"better-sqlite3": "^12.8.0",
"nuxt": "^4.4.2"
},
"devDependencies": {
"@nuxt/eslint": "^1.15.2",
"@nuxtjs/color-mode": "^4.0.0",
"@nuxtjs/tailwindcss": "^6.14.0",
"@tailwindcss/typography": "^0.5.16",
"eslint": "^10.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"tailwindcss": "^3.4.17",
"typescript": "^6.0.2",
"vue-tsc": "^3.2.6"
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"better-sqlite3",
"esbuild"
]
}
}