-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.36 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
{
"name": "wp-tag-order",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"license": "MIT",
"scripts": {
"start": "",
"type-check": "tsc",
"type-check:watch": "npm run type-check -- --watch",
"lint": "biome check",
"lint:fix": "biome check --write",
"lint:css": "biome format src/assets/css --write && stylelint 'src/**/*{,.*}.{css,scss}' --fix",
"dev": "rspack build --env development --mode development --watch",
"build": "rspack build --env production --mode production",
"build:analyze": "RSDOCTOR=true rspack build --env production --mode production",
"secretlint": "secretlint --maskSecrets --secretlintignore .gitignore '**/*'",
"prepare": "husky"
},
"browserslist": "defaults and fully supports es6-module",
"devDependencies": {
"@biomejs/biome": "2.5.3",
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@commitlint/types": "^21.2.0",
"@csstools/postcss-global-data": "^4.0.0",
"@rsdoctor/rspack-plugin": "^1.5.18",
"@rspack/cli": "^2.1.3",
"@rspack/core": "^2.1.3",
"@secretlint/secretlint-rule-preset-recommend": "^13.0.2",
"@sect/webpack-sweet-entry": "^8.0.1",
"@spotify/tsconfig": "^15.0.0",
"@types/jquery": "^4.0.1",
"@types/jqueryui": "^1.12.24",
"@types/node": "^26.1.1",
"css-loader": "^7.1.4",
"fork-ts-checker-notifier-webpack-plugin": "^9.0.0",
"fork-ts-checker-webpack-plugin": "^9.1.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"postcss": "^8.5.16",
"postcss-calc": "^10.1.1",
"postcss-combine-duplicated-selectors": "^10.0.3",
"postcss-hexrgba": "^2.1.0",
"postcss-import": "^16.1.1",
"postcss-loader": "^8.2.1",
"postcss-preset-env": "^11.3.2",
"postcss-pxtorem": "^6.1.0",
"postcss-reporter": "^7.1.0",
"postcss-sort-media-queries": "^6.6.2",
"secretlint": "^13.0.2",
"stylelint": "^17.14.0",
"stylelint-config-recess-order": "^7.7.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-webpack-plugin": "^5.1.0",
"svg-spritemap-webpack-plugin": "^5.1.4",
"ts-node": "^10.9.2",
"tsc-files": "^1.1.4",
"typescript": "^7.0.2",
"webpack": "^5.108.4",
"webpack-remove-empty-scripts": "^1.1.1"
},
"dependencies": {
"core-js": "^3.49.0",
"dotenv": "^17.4.2",
"jquery": "^4.0.0",
"sweetalert2": "^11.26.25"
}
}