-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.22 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
{
"name": "go-fiber-react-ts",
"version": "1.0.0",
"description": "My webpack project",
"main": "./web_src/index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --fix --report-unused-disable-directives && tsc -noEmit",
"prettier": "prettier ./web_src/ --write",
"build": "webpack --mode=production --node-env=production",
"build:dev": "webpack --mode=development",
"build:watch": "webpack --mode=production --node-env=production --watch",
"watch": "webpack --watch",
"serve": "webpack serve --node-env=development"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@reduxjs/toolkit": "^2.3.0",
"axios": "^1.7.7",
"plyr": "^3.7.8",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.3.0",
"react-redux": "^9.1.2",
"react-router": "^7.0.1",
"react-router-dom": "^7.0.1",
"react-transition-group": "^4.4.5",
"redux": "^5.0.1",
"swr": "^2.2.5"
},
"devDependencies": {
"@eslint/compat": "^1.2.3",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
"@stylistic/eslint-plugin": "^2.11.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.10.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-transition-group": "^4.4.11",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"@webpack-cli/generators": "^3.0.7",
"css-loader": "^7.1.1",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint": "^9.16.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import-x": "^4.4.3",
"eslint-plugin-react": "^7.37.2",
"globals": "^15.12.0",
"html-webpack-plugin": "^5.6.3",
"mini-css-extract-plugin": "^2.9.2",
"sass": "^1.80.6",
"sass-loader": "^16.0.3",
"style-loader": "^4.0.0",
"swc": "^1.0.11",
"swc-loader": "^0.2.6",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
}
}