-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.58 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.58 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
{
"name": "app-main",
"version": "1.0.0",
"description": "Enonic Main App",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/enonic/app-admin-home"
},
"type": "module",
"scripts": {
"build": "pnpm build:dev",
"build:prod": "pnpm run /^build:prod:.*$/",
"build:prod:js": "cross-env BUILD_TARGET=js vite build --mode production",
"build:prod:css": "cross-env BUILD_TARGET=css vite build --mode production",
"build:dev": "pnpm run /^build:dev:.*$/",
"build:dev:js": "cross-env BUILD_TARGET=js vite build --mode development",
"build:dev:css": "cross-env BUILD_TARGET=css vite build --mode development",
"check": "pnpm run /^check:.*$/",
"check:types": "tsc --noEmit",
"check:lint": "eslint . --quiet --cache",
"fix": "eslint --fix **/*.ts"
},
"dependencies": {
"@enonic/lib-admin-ui": "workspace:*",
"q": "^1.5.1"
},
"devDependencies": {
"@enonic/eslint-config": "^2.1.0",
"@rollup/plugin-inject": "^5.0.5",
"@types/q": "^1.5.8",
"autoprefixer": "^10.4.21",
"browserslist-config-enonic": "^1.0.8",
"cross-env": "^10.0.0",
"cssnano": "^7.1.1",
"enonic-admin-artifacts": "^2.3.2",
"eslint": "^9.34.0",
"globals": "^16.3.0",
"jiti": "^2.5.1",
"postcss": "^8.5.6",
"postcss-sort-media-queries": "^5.2.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.42.0",
"vite": "^7.1.4"
},
"browserslist": [
"extends browserslist-config-enonic"
],
"engines": {
"node": ">= 24.13.0",
"pnpm": ">= 10.30.0",
"npm": ">= 11.6.2"
}
}