-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.49 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.49 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "moso-vite",
"type": "module",
"version": "2024.5.10",
"private": true,
"packageManager": "pnpm@9.1.0",
"scripts": {
"build": "cross-env NODE_ENV=production vite-ssg build && cp _redirects dist/_redirects && cp _headers dist/_headers",
"dev": "vite --port 3000 --open",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@vueuse/core": "^10.9.0",
"@vueuse/head": "^2.0.0",
"vue": "^3.4.27",
"vue-router": "^4.3.2"
},
"devDependencies": {
"@moso/eslint-config": "^0.3.5",
"@netlify/plugin-csp-nonce": "^1.2.10",
"@types/diacritics": "^1.3.3",
"@types/fs-extra": "^11.0.4",
"@types/markdown-it": "^14.1.1",
"@types/markdown-it-link-attributes": "^3.0.5",
"@types/node": "^20.12.11",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"@unhead/vue": "^1.9.10",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"cross-env": "^7.0.3",
"diacritics": "^1.3.0",
"eslint": "^8.57.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.26.0",
"fs-extra": "^11.2.0",
"gray-matter": "^4.0.3",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^8.6.7",
"markdown-it-link-attributes": "^4.0.1",
"pnpm": "^9.1.0",
"prettier": "^3.2.5",
"sass": "^1.77.0",
"shikiji": "^0.10.2",
"typescript": "^5.4.5",
"unplugin-auto-import": "^0.17.6",
"unplugin-vue-components": "^0.27.0",
"unplugin-vue-markdown": "^0.26.2",
"vite": "^5.2.11",
"vite-plugin-inspect": "^0.8.4",
"vite-plugin-pages": "^0.32.1",
"vite-ssg": "^0.23.7",
"vite-svg-loader": "^5.1.0",
"vue-eslint-parser": "^9.4.2"
},
"author": {
"name": "Morten Sørensen",
"email": "morten@moso.io",
"url": "https://moso.io"
},
"license": "MIT",
"homepage": "https://moso.io",
"repository": {
"type": "git",
"url": "git+https://github.com/moso/moso.io/moso.io.git"
},
"bugs": {
"url": "https://github.com/moso/moso.io/issues"
},
"eslintConfig": {
"extends": "@moso",
"rules": {
"vue/html-self-closing": "off"
}
}
}