-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.53 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
{
"private": true,
"name": "blog",
"version": "0.0.1",
"description": "微风轻拂晨曦之纱",
"scripts": {
"start": "webpack serve --config webpack/webpack.config.dev.js --hot",
"build": "cross-env NODE_ENV=production webpack --progress",
"seo": "node public/seo.js",
"static": "webpack --config pages.static/webpack.config.js --progress",
"static:dev": "webpack serve --config pages.static/webpack.config.dev.js --hot --color",
"lint": "eslint --fix --ignore-path .gitignore ./",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LitileXueZha/blog.git"
},
"keywords": [
"blog"
],
"author": "LitileXueZha",
"license": "ISC",
"bugs": {
"url": "https://github.com/LitileXueZha/blog/issues"
},
"homepage": "https://ningtaostudy.cn",
"dependencies": {
"abort-controller": "^3.0.0",
"core-js": "^3.30.1",
"highlight.js": "^11.8.0",
"js-base64": "^3.7.5",
"marked": "^5.0.0",
"query-string": "^8.1.0",
"regenerator-runtime": "^0.13.11",
"source-map": "^0.7.4",
"traceback.js": "^0.3.0",
"whatwg-fetch": "^3.6.2"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/eslint-parser": "^7.21.8",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@babel/runtime": "^7.21.5",
"autoprefixer": "^10.4.14",
"babel-loader": "^9.1.2",
"compression-webpack-plugin": "^10.0.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^5.0.0",
"eslint": "^8.39.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.2",
"html-webpack-plugin": "^5.5.1",
"less": "^4.1.3",
"less-loader": "^11.1.0",
"mini-css-extract-plugin": "^2.7.5",
"postcss": "^8.4.23",
"postcss-loader": "^7.3.0",
"pug": "^3.0.2",
"pug-loader": "^2.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"style-loader": "^3.3.2",
"terser-webpack-plugin": "^5.3.7",
"webpack": "^5.82.0",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^5.0.2",
"webpack-dev-server": "^4.13.3",
"webpack-merge": "^5.8.0"
},
"browserslist": [
"last 8 versions",
"not ie < 11",
"Android 4.4"
]
}