-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·76 lines (76 loc) · 2.24 KB
/
package.json
File metadata and controls
executable file
·76 lines (76 loc) · 2.24 KB
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
{
"scripts": {
"build:dev": "webpack --mode development",
"build": "webpack --mode production",
"watch": "webpack --mode development --watch --progress",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,css,scss,html}\"",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"lint:fix": "eslint . --ext .ts,.tsx,.js,.jsx --fix"
},
"browserslist": [
"defaults and partially supports es6-module"
],
"devDependencies": {
"@eslint/js": "^9.39.4",
"@tailwindcss/postcss": "^4.3.0",
"@types/jquery": "^3.5.34",
"@types/jqueryui": "^1.12.24",
"@types/lodash": "^4.17.24",
"@types/toastr": "^2.1.43",
"@types/webpack": "^5.28.5",
"@typescript-eslint/parser": "^8.59.3",
"autoprefixer": "^10.5.0",
"css-loader": "^7.1.4",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.2",
"eslint-webpack-plugin": "^5.0.3",
"html-inline-css-loader": "^0.2.1",
"html-inline-css-webpack-plugin": "^1.11.2",
"html-inline-script-webpack-plugin": "^3.2.1",
"html-loader": "^5.1.0",
"html-webpack-inline-svg-plugin": "^2.3.0",
"html-webpack-plugin": "^5.6.7",
"mini-css-extract-plugin": "^2.10.2",
"postcss": "^8.5.14",
"postcss-cli": "^11.0.1",
"postcss-loader": "^8.2.1",
"postcss-minify": "^1.2.0",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.6.14",
"sass": "^1.99.0",
"sass-loader": "^16.0.8",
"socket.io": "^4.8.3",
"tailwindcss": "^4.3.0",
"terser-webpack-plugin": "^5.6.0",
"ts-loader": "^9.5.7",
"ts-node": "^10.9.2",
"tsconfig-paths-webpack-plugin": "^4.2.0",
"tslib": "^2.8.1",
"type-fest": "^4.41.0",
"typescript": "6.0.0-dev.20250807",
"vue-loader": "^17.4.2",
"webpack": "^5.106.2",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"dedent": "^1.7.2",
"jquery": "^3.7.1",
"jqueryui": "^1.11.1",
"lodash": "^4.18.1",
"pinia": "^3.0.4",
"toastr": "^2.1.4",
"vue": "^3.5.34",
"vue-router": "^4.6.4",
"yaml": "^2.9.0",
"zod": "^4.4.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"@tailwindcss/oxide",
"unrs-resolver"
]
}
}