forked from danielroe/unsight.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.33 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
{
"name": "nuxt-app",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare && simple-git-hooks",
"lint": "eslint .",
"test:types": "vue-tsc --noEmit"
},
"dependencies": {
"@iconify-json/ri": "1.2.3",
"@iconify-json/tabler": "1.2.11",
"@nuxthub/core": "^0.8.7",
"@nuxtjs/html-validator": "1.8.2",
"@octokit/auth-app": "^7.1.3",
"@octokit/rest": "^21.0.2",
"@octokit/webhooks-types": "^7.6.1",
"@unocss/nuxt": "^0.65.1",
"@unocss/reset": "^0.65.1",
"hex-rgb": "^5.0.0",
"ml-distance": "^4.0.1",
"ml-kmeans": "^6.0.0",
"nuxt": "latest",
"nuxt-time": "1.0.3",
"nuxt-webhook-validators": "0.1.5",
"ohash": "^1.1.4",
"rgb-to-hsl": "^0.0.3",
"universal-github-app-jwt": "^2.2.0",
"unocss": "^0.65.1",
"unplugin-vue-router": "^0.10.9"
},
"devDependencies": {
"@nuxt/eslint": "0.7.3",
"lint-staged": "15.2.11",
"simple-git-hooks": "2.11.1",
"typescript": "5.6.3",
"vue-tsc": "2.1.10",
"wrangler": "3.95.0"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,mjs,cjs,json,.*rc}": [
"npx eslint --fix"
]
},
"packageManager": "[email protected]"
}