-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.25 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.25 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
{
"name": "casimir-docs",
"version": "0.1.0",
"scripts": {
"dev": "vite",
"build": "npm run parse && vue-tsc --noEmit && vite build",
"preview": "vite preview --port 5050",
"test:unit": "vitest --environment jsdom",
"typecheck": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"bootstrap": "npm run bootstrap:download && npm run bootstrap:install",
"bootstrap:download": "node scripts/downloadRepos.js",
"bootstrap:install": "node scripts/installRepos.js",
"parse": "concurrently \"npm:parse:packages\" \"npm:parse:components\" \"npm:parse:jsdoc\" --c blueBright,cyan,magenta",
"parse:components": "node scripts/parseComponents.js",
"parse:jsdoc": "node scripts/parseJsDocs.js",
"parse:packages": "node scripts/parsePackages.js",
"precommit": "",
"prepare": "husky install"
},
"dependencies": {
"@toycode/markdown-it-class": "^1.2.4",
"@types/prismjs": "^1.26.0",
"@vueuse/core": "^8.5.0",
"change-case": "^4.1.2",
"filter-where": "^2.0.0",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^8.6.4",
"markdown-it-prism": "^2.2.4",
"pinia": "^2.0.13",
"prismjs": "^1.28.0",
"vue": "^3.2.33",
"vue-router": "^4.0.14",
"vuetify": "^3.0.0-beta.2"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.0",
"@types/node": "^16.11.27",
"@vitejs/plugin-vue": "^2.3.1",
"@vitejs/plugin-vue-jsx": "^1.3.10",
"@vue/eslint-config-typescript": "^10.0.0",
"@vue/tsconfig": "^0.1.3",
"concurrently": "^7.2.0",
"decompress": "^4.2.1",
"eslint": "^8.5.0",
"eslint-plugin-vue": "^8.2.0",
"find-root": "^1.1.0",
"fs-extra": "^10.1.0",
"glob": "^8.0.3",
"got": "^12.0.4",
"husky": "^8.0.1",
"jsdoc": "^3.6.10",
"lint-staged": "^12.4.1",
"ora": "^6.1.0",
"sass": "^1.51.0",
"shelljs": "^0.8.5",
"shx": "^0.3.4",
"typescript": "~4.6.3",
"vite": "^2.9.5",
"vite-plugin-vuetify": "^1.0.0-alpha.11",
"vue-docgen-api": "^4.46.0",
"vue-tsc": "^0.34.7"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": "eslint --fix"
},
"engines": {
"node": "^14.15.0",
"npm": "^6.0.0"
}
}