-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.64 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
61
{
"name": "natalie",
"description": "a multi-column web client for Fediverse",
"version": "0.1.0",
"author": "sasarafu <[email protected]>",
"private": true,
"packageManager": "[email protected]+sha256.17ca6e08e7633b624e8f870db81a78f46afe119de62bcaf0a7407574139198fc",
"engines": {
"node": "20"
},
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint:ts": "tsc -p tsconfig.json --noEmit",
"lint:eslint": "eslint .",
"lint:nuxt": "nuxi typecheck",
"lint": "npm run lint:ts && npm run lint:eslint && npm run lint:nuxt",
"lintfix": "npm run lint:eslint -- --fix",
"prepare": "husky"
},
"dependencies": {
"@atproto/api": "^0.12.0",
"@pinia/nuxt": "^0.5.1",
"dayjs": "^1.11.10",
"masto": "^6.0.5",
"mfm-js": "^0.24.0",
"misskey-js": "^2024.3.1",
"pinia": "^2.1.6",
"sanitize-html": "^2.11.0"
},
"devDependencies": {
"@nuxt/devtools": "latest",
"@nuxt/eslint": "^0.5.0",
"@nuxtjs/tailwindcss": "^6.8.0",
"@types/node": "^20",
"@types/sanitize-html": "^2.9.0",
"@vueuse/core": "^10.3.0",
"@vueuse/nuxt": "^10.3.0",
"daisyui": "^4.4.19",
"eslint": "^9.3.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^9.0.10",
"lint-staged": "^15.2.2",
"nuxt": "^3.10.3",
"typescript": "^5.2.2",
"vue-tsc": "^2.0.6"
},
"overrides": {
"vue": "latest"
},
"lint-staged": {
"**/*.{js,ts,vue}": [
"bash -c tsc -p tsconfig.json --noEmit",
"eslint"
]
}
}