-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.42 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
{
"name": "b-x-wu.github.io",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"dev": "webpack-dev-server --open --mode development --hot",
"build": "webpack --mode production",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npx eslint . --ignore-pattern \"dist/*\"",
"lint:fix": "npm run -s lint -- --fix",
"clean": "rm -rf dist"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@babel/core": "^7.20.7",
"@babel/preset-react": "^7.18.6",
"@types/react": "^18.0.31",
"@types/react-dom": "^18.0.11",
"autoprefixer": "^10.4.19",
"babel-loader": "^9.1.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.1",
"cssnano": "^7.0.1",
"eslint-plugin-tailwindcss": "^3.15.1",
"html-webpack-plugin": "^5.5.0",
"mixbox": "^2.0.0",
"postcss": "^8.4.38",
"postcss-loader": "^8.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.23.0",
"style-loader": "^4.0.0",
"tailwindcss": "^3.4.3",
"ts-loader": "^9.4.2",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@stylistic/eslint-plugin": "^1.8.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.1",
"typescript": "^5.4.5",
"typescript-eslint": "^7.6.0",
"webpack-dev-server": "^4.11.1"
}
}