-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
83 lines (83 loc) · 2.81 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
{
"name": "conference-web",
"version": "0.1.0",
"private": true,
"scripts": {
"pre-build": "npm run ts -- ./scripts/pre-build/index.ts",
"dev": "vite",
"build": "npm run pre-build && vite-ssg build && npm run after-build && npm run end-build",
"serve": "node ./scripts/tools/serve.js",
"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": "node -r ./scripts/register.js",
"after-build": "npm run ts -- ./scripts/after-build/index.ts",
"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": {
"@types/socket.io-client": "^1.4.33",
"@vueuse/core": "^4.8.1",
"axios": "^0.21.1",
"markdown-it": "^12.0.4",
"markdown-it-abbr": "^1.0.4",
"markdown-it-anchor": "^7.0.2",
"markdown-it-container": "^3.0.0",
"markdown-it-deflist": "^2.0.3",
"markdown-it-emoji": "^2.0.0",
"markdown-it-external-links": "0.0.6",
"markdown-it-footnote": "^3.0.2",
"markdown-it-imsize": "^2.0.1",
"markdown-it-ins": "^3.0.0",
"markdown-it-mark": "^3.0.0",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"markdown-it-toc-done-right": "^4.1.0",
"ol": "^6.3.1",
"prismjs": "^1.20.0",
"socket.io-client": "^2.3.0",
"vue": "^3.0.11",
"vue-i18n": "^9.1.3",
"vue-router": "^4.0.6"
},
"devDependencies": {
"@types/lodash": "^4.14.157",
"@types/markdown-it": "^12.0.1",
"@types/node": "^14.0.13",
"@types/ol": "^6.3.1",
"@types/prismjs": "^1.16.1",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"@vitejs/plugin-vue": "^1.2.1",
"@vue/compiler-sfc": "^3.0.11",
"@vue/server-renderer": "^3.0.11",
"@vueuse/head": "^0.5.1",
"dotenv": "^8.2.0",
"esbuild": "^0.9.7",
"eslint": "^7.24.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-vue": "^7.9.0",
"find": "^0.3.0",
"koa": "^2.13.0",
"koa-static-server": "^1.5.2",
"npm-run-all": "^4.1.5",
"optipng-bin": "^7.0.0",
"ora": "^5.3.0",
"recursive-copy": "^2.0.11",
"sass": "^1.32.8",
"sitemap-generator": "^8.5.1",
"stylelint": "^13.12.0",
"stylelint-config-standard": "^21.0.0",
"stylelint-scss": "^3.19.0",
"typescript": "^4.2.2",
"vite": "^2.1.5",
"vite-plugin-components": "^0.8.3",
"vite-plugin-icons": "^0.5.0",
"vite-ssg": "^0.9.2"
}
}