-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.17 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
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "imdemo",
"version": "0.0.0",
"scripts": {
"dev30": "vite",
"compile": "vite build",
"syncdir": "node scripts/sync_dir.js",
"build": "pnpm compile && pnpm syncdir",
"preview": "vite preview",
"lint": "eslint --fix .",
"format": "prettier --write './**/*.{js,ts,vue,css,md,json,html}' --config ./.prettierrc",
"test": "jest",
"typecheck": "vue-tsc --noEmit"
},
"engines": {
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm",
"pnpm": "*"
},
"dependencies": {
"@rollup/pluginutils": "^5.0.2",
"@vitejs/plugin-vue-jsx": "^2.1.1",
"axios": "^1.2.0",
"concurrently": "^7.6.0",
"copy-dir": "^1.3.0",
"highlight.js": "^11.7.0",
"lodash": "^4.17.21",
"markdown-it": "^13.0.1",
"markdown-it-container": "^3.0.0",
"p5": "^1.5.0",
"vite-plugin-markdown": "^2.1.0",
"vite-plugin-md": "^0.20.4",
"vue": "^3.2.22",
"vue-highlight.js": "^3.1.0",
"vue-i18n": "^9.2.2",
"vue-router": "4",
"vuex": "^4.0.2"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@testing-library/dom": "^8.19.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/user-event": "^14.4.3",
"@testing-library/vue": "^6.4.2",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.191",
"@types/markdown-it": "^12.2.3",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@vitejs/plugin-vue": "^3.2.0",
"@vue/babel-preset-app": "^5.0.8",
"@vue/compiler-sfc": "^3.2.22",
"@vue/eslint-config-typescript": "^9.1.0",
"@vue/test-utils": "2.0.0-rc.18",
"@vue/vue3-jest": "^27.0.0-alpha.3",
"babel-jest": "^27.3.1",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.2.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-vue": "^8.0.3",
"jest": "^27.3.1",
"node-sass": "^5.0.0",
"prettier": "^2.4.1",
"sass": "^1.56.1",
"ts-jest": "^27.0.7",
"typescript": "^4.5.2",
"vite": "^3.2.5",
"vue-jest": "5.0.0-alpha.10",
"vue-tsc": "^0.29.5"
}
}