-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
97 lines (97 loc) · 3.36 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "wp-tag-order",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "",
"type-check": "tsc",
"type-check:watch": "npm run type-check -- --watch",
"lint": "eslint src/assets/ts",
"lint:fix": "eslint --fix src/assets/ts",
"lint:css": "stylelint src/**/*.css --fix",
"dev": "rspack build --env development --mode development --watch",
"build": "rspack build --env production --mode production",
"prepare": "husky"
},
"browserslist": "defaults and fully supports es6-module",
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/types": "^19.5.0",
"@csstools/postcss-global-data": "^3.0.0",
"@eslint/compat": "^1.1.1",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@rspack/cli": "^1.1.8",
"@rspack/core": "^1.1.8",
"@secretlint/secretlint-rule-preset-recommend": "^9.0.0",
"@sect/webpack-sweet-entry": "^7.0.4",
"@soda/friendly-errors-webpack-plugin": "^1.8.1",
"@spotify/tsconfig": "^15.0.0",
"@tanstack/eslint-plugin-query": "^5.62.9",
"@types/jquery": "^3.5.32",
"@types/jqueryui": "^1.12.23",
"@types/node": "^22.10.2",
"@types/node-notifier": "^8.0.5",
"@types/webpack-bundle-analyzer": "^4.7.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"css-loader": "^7.1.2",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-webpack": "^0.13.10",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-tailwindcss": "^3.17.5",
"eslint-plugin-testing-library": "^7.1.1",
"eslint-plugin-tsdoc": "^0.2.17",
"eslint-plugin-unused-imports": "^3.2.0",
"eslint-plugin-vitest": "^0.5.4",
"eslint-rspack-plugin": "^4.2.1",
"fork-ts-checker-notifier-webpack-plugin": "^9.0.0",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"postcss": "^8.4.49",
"postcss-calc": "^10.0.2",
"postcss-combine-duplicated-selectors": "^10.0.3",
"postcss-hexrgba": "^2.1.0",
"postcss-import": "^16.1.0",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^10.1.2",
"postcss-pxtorem": "^6.1.0",
"postcss-reporter": "^7.1.0",
"postcss-sort-media-queries": "^5.2.0",
"prettier": "^3.4.2",
"secretlint": "^9.0.0",
"stylelint": "^16.12.0",
"stylelint-config-recess-order": "^5.1.1",
"stylelint-config-standard": "^36.0.1",
"stylelint-prettier": "^5.0.2",
"stylelint-webpack-plugin": "^5.0.1",
"svg-spritemap-webpack-plugin": "^4.7.0",
"ts-node": "^10.9.2",
"tsc-files": "^1.1.4",
"typescript": "^5.7.2",
"typescript-eslint": "8.19.0",
"webpack": "^5.97.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-remove-empty-scripts": "^1.0.4"
},
"dependencies": {
"core-js": "^3.39.0",
"dotenv": "^16.4.7",
"jquery": "^3.7.1",
"node-notifier": "^10.0.1",
"sweetalert2": "^11.15.2"
}
}