-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
80 lines (80 loc) · 2.33 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
{
"name": "@enonic/lib-admin-ui",
"version": "5.0.0",
"description": "Admin UI Library",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/enonic/lib-admin-ui"
},
"main": "entry.js",
"scripts": {
"build:prod": "concurrently -c auto -g --timings npm:build:prod:*",
"build:prod:js": "tsc",
"build:prod:lib": "webpack --color",
"build:dev": "concurrently -c auto -g --timings npm:build:dev:*",
"build:dev:js": "swc src --out-dir build/tmp/",
"build:dev:types": "tsc --skipLibCheck --emitDeclarationOnly --declaration",
"build:dev:lib": "webpack --color",
"typecheck": "tsc --pretty --skipLibCheck --noEmit",
"lint": "eslint **/*.ts --quiet --cache",
"fix": "eslint --fix **/*.ts --cache"
},
"dependencies": {
"@types/dompurify": "=3.0.5",
"@types/mousetrap": "^1.6.15",
"dompurify": "=3.1.7",
"fine-uploader": "^5.16.2",
"jquery": "^3.7.1",
"jquery-simulate": "^1.0.2",
"jquery-ui": "^1.14.1",
"mousetrap": "^1.6.5",
"q": "^1.5.1",
"validator": "^13.12.0"
},
"peerDependencies": {
"postcss": "^8.2.2"
},
"devDependencies": {
"@enonic/eslint-config": "^2.0.1",
"@swc/cli": "^0.6.0",
"@swc/core": "1.10.7",
"@types/jquery": "^3.5.31",
"@types/jqueryui": "^1.12.23",
"@types/q": "^1.5.8",
"@types/semver": "^7.5.8",
"@types/validator": "^13.12.2",
"autoprefixer": "^10.4.20",
"browserslist": "^4.24.4",
"browserslist-config-enonic": "^1.0.8",
"circular-dependency-plugin": "^5.2.2",
"concurrently": "^9.1.2",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"cssnano": "^7.0.5",
"enonic-admin-artifacts": "^2.2.0",
"error-logger-webpack-plugin": "^1.1.1",
"eslint": "^9.18.0",
"glob": "^11.0.1",
"less": "^4.2.1",
"less-loader": "^12.2.0",
"mini-css-extract-plugin": "^2.9.2",
"postcss-loader": "^8.1.1",
"postcss-normalize": "^13.0.1",
"postcss-sort-media-queries": "^5.2.0",
"swc-loader": "^0.2.6",
"terser-webpack-plugin": "^5.3.11",
"ts-loader": "^9.5.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"browserslist": [
"extends browserslist-config-enonic"
],
"engines": {
"node": ">= 20.18.0",
"npm": ">= 10.8.2"
}
}