This repository has been archived by the owner on Nov 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
85 lines (85 loc) · 2.66 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
{
"name": "luogu-blog-frontend",
"description": "Luogu Blog Frontend",
"version": "1.0.0",
"author": "Luogu Dev Team",
"license": "AGPL",
"private": true,
"scripts": {
"build-dev": "cross-env NODE_ENV=development webpack --progress --hide-modules --mode development",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules --mode production",
"lint": "eslint --ext .js,.vue,.hbs src/",
"lint-fix": "eslint --ext .js,.vue,.hbs --fix src/",
"dev-server": "node src/devserver/index.js",
"dev": "yarn build-dev && yarn dev-server",
"analyze": "cross-env NODE_ENV=development BUNDLE_ANALYZE=true webpack --progress --hide-modules"
},
"dependencies": {
"@babel/polyfill": "^7.10.4",
"amazeui": "^2.7.2",
"ant-design-vue": "^1.5.4",
"axios": "^0.21.2",
"bootstrap": "^4.4.1",
"bootstrap-vue": "^2.13.0",
"date-fns": "^2.12.0",
"fomantic-ui": "^2.8.6",
"font-awesome": "^4.7.0",
"highlight.js": "^10.4.1",
"holakit": "^0.23.0",
"i": "^0.3.7",
"jquery": "^3.5.0",
"katex": "^0.11.1",
"lodash": "^4.17.21",
"mdui": "^0.4.3",
"normalize.css": "^8.0.1",
"query-string": "^6.12.1",
"uglifyjs-webpack-plugin": "^2.2.0",
"vue": "^2.6.11",
"vue-awesome": "^4.0.2"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/eslint-parser": "^7.11.4",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/preset-env": "^7.11.0",
"babel-loader": "^8.1.0",
"babel-plugin-lodash": "^3.3.2",
"cross-env": "^7.0.2",
"css-loader": "^3.5.3",
"eslint": "^7.7.0",
"eslint-config-standard": "^14.1.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-html": "^6.0.3",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"express": "^4.17.1",
"express-hbs": "^2.3.3",
"file-loader": "^6.0.0",
"handlebars": "^4.7.7",
"json-server": "^0.16.1",
"lodash-webpack-plugin": "^0.11.4",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"terser-webpack-plugin": "^3.0.0",
"url-loader": "^4.1.0",
"vue-loader": "^15.9.2",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.44.1",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"resolutions": {
"natives": "1.1.6"
}
}