-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
96 lines (96 loc) · 3.14 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "conference-web",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"pre-build": "npm run ts -- ./scripts/pre-build/index.ts",
"dev": "vite",
"serve": "vite preview",
"build": "npm run pre-build && vite-ssg build && npm run end-build",
"lint": "npm run lint:eslint && npm run lint:stylelint",
"lint:eslint": "eslint --ext .js,.ts,.vue src/ --fix",
"lint:stylelint": "stylelint 'src/**/*.{css,scss,sass,vue}' --fix",
"ts": "esno",
"end-build": "npm run ts -- ./scripts/end-build/index.ts",
"tool:generate-sitemap": "node ./scripts/tools/generateSitemap.js",
"tool:generate-sitemap:local": "node ./scripts/tools/generateSitemap.js --local",
"tool:optimize-png": "node ./scripts/tools/optimizePng.js"
},
"dependencies": {
"@gtm-support/vue-gtm": "^2.0.0",
"@types/socket.io-client": "^1.4.36",
"@vueuse/core": "^10.0.2",
"@vueuse/shared": "^10.1.2",
"axios": "^1.3.5",
"js-md5": "^0.7.3",
"lodash-es": "^4.17.21",
"markdown-it": "^13.0.1",
"markdown-it-abbr": "^1.0.4",
"markdown-it-anchor": "^8.6.7",
"markdown-it-container": "^3.0.0",
"markdown-it-deflist": "^2.1.0",
"markdown-it-emoji": "^2.0.2",
"markdown-it-external-links": "0.0.6",
"markdown-it-footnote": "^3.0.3",
"markdown-it-imsize": "^2.0.1",
"markdown-it-ins": "^3.0.1",
"markdown-it-mark": "^3.0.1",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"markdown-it-toc-done-right": "^4.2.0",
"ol": "^7.3.0",
"postcss-html": "^1.5.0",
"prismjs": "^1.29.0",
"socket.io-client": "^4.6.1",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard-scss": "^8.0.0",
"unplugin-icons": "^0.16.1",
"vue": "^3.2.47",
"vue-i18n": "^9.2.2",
"vue-router": "^4.1.6",
"workbox-window": "^6.5.4"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@iconify/json": "^2.2.52",
"@types/google-spreadsheet": "^3.3.1",
"@types/lodash": "^4.14.194",
"@types/markdown-it": "^12.2.3",
"@types/node": "^18.15.11",
"@types/ol": "^7.0.0",
"@types/prismjs": "^1.26.0",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"@vitejs/plugin-vue": "^4.1.0",
"@vue/compiler-sfc": "^3.2.47",
"@vue/server-renderer": "^3.2.47",
"@vueuse/head": "^1.1.26",
"dotenv": "^16.0.3",
"esbuild": "^0.17.17",
"eslint": "^8.38.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.11.0",
"esno": "^0.16.3",
"find": "^0.3.0",
"google-spreadsheet": "^3.3.0",
"koa": "^2.14.2",
"koa-static-server": "^1.5.2",
"npm-run-all": "^4.1.5",
"optipng-bin": "^9.0.0",
"ora": "^6.3.0",
"recursive-copy": "^2.0.14",
"sass": "^1.62.0",
"sitemap-generator": "^8.5.1",
"stylelint": "^15.5.0",
"typescript": "^5.0.4",
"unplugin-vue-components": "^0.24.1",
"vite": "^4.2.2",
"vite-plugin-pwa": "^0.14.7",
"vite-ssg": "^0.22.2"
}
}