-
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) · 1018 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1018 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": "nuxtype",
"version": "1.0.0",
"private": true,
"packageManager": "pnpm@10.26.0",
"description": "Real-time collaborative note-taking app with Nuxt 3, PostgreSQL and Y.js",
"author": "",
"license": "ISC",
"keywords": [
"nuxt",
"collaboration",
"crdt",
"yjs"
],
"scripts": {
"dev": "pnpm --filter web dev",
"dev:collab": "pnpm --filter collab dev",
"build": "pnpm -r build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"prepare": "husky"
},
"devDependencies": {
"@antfu/eslint-config": "^6.7.1",
"@nuxt/eslint": "^1.12.1",
"@types/node": "^25.0.2",
"drizzle-kit": "^0.31.8",
"eslint": "^9.39.2",
"eslint-plugin-format": "^1.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"typescript-eslint": "^8.50.0"
},
"lint-staged": {
"*.{js,ts,vue}": [
"eslint --fix"
]
}
}