-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.45 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
{
"name": "ximing-blog",
"title": "Ximing Blog",
"version": "1.0.0",
"homepage": "http://zzllover.github.io",
"author": "Ximing",
"devDependencies": {
"@marshallofsound/webpack-asset-relocator-loader": "^0.5.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.8",
"@types/node": "^18.11.5",
"@types/react": "^18.0.23",
"@types/react-dom": "^18.0.7",
"@types/webpack-env": "^1.18.0",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"eslint": "^8.26.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.31.10",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^7.2.13",
"grunt": "0.4.5",
"grunt-banner": "0.2.3",
"grunt-contrib-less": "0.11.4",
"grunt-contrib-uglify": "0.5.1",
"grunt-contrib-watch": "0.6.1",
"html-webpack-plugin": "^5.5.0",
"less": "^4.1.3",
"less-loader": "11.1.0",
"mini-css-extract-plugin": "^2.6.1",
"postcss": "^8.4.26",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^7.3.3",
"postcss-preset-env": "^9.0.0",
"react-refresh": "^0.14.0",
"sass": "^1.55.0",
"sass-loader": "^13.1.0",
"serve": "^14.0.1",
"style-loader": "^3.3.1",
"tailwindcss": "^3.3.3",
"ts-loader": "9.4.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.14.1"
},
"repository": {
"type": "git",
"url": "https://github.com/Huxpro/huxpro.github.io"
},
"scripts": {
"preview": "cd _site; python -m SimpleHTTPServer 8020",
"watch": "grunt watch & npm run preview & jekyll serve -w;",
"start": "cross-env NODE_ENV=development webpack serve --config script/webpack.config.dev.js",
"build": "cross-env NODE_ENV=production webpack --config script/webpack.config.prod.js && node script/post-build.js",
"serve": "cross-env NODE_ENV=production webpack --config script/webpack.config.prod.js && cross-env serve dist/",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src/"
}
}