-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 2.24 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
{
"devDependencies": {
"@enonic-types/core": "^7.14.4",
"@enonic-types/global": "^7.14.4",
"@enonic-types/lib-admin": "^7.14.4",
"@enonic-types/lib-auth": "^7.14.4",
"@enonic-types/lib-cluster": "^7.14.4",
"@enonic-types/lib-common": "^7.14.4",
"@enonic-types/lib-content": "^7.14.4",
"@enonic-types/lib-context": "^7.14.4",
"@enonic-types/lib-event": "^7.14.4",
"@enonic-types/lib-export": "^7.14.4",
"@enonic-types/lib-i18n": "^7.14.4",
"@enonic-types/lib-io": "^7.14.4",
"@enonic-types/lib-mail": "^7.14.4",
"@enonic-types/lib-node": "^7.14.4",
"@enonic-types/lib-portal": "^7.14.4",
"@enonic-types/lib-project": "^7.14.4",
"@enonic-types/lib-repo": "^7.14.4",
"@enonic-types/lib-scheduler": "^7.14.4",
"@enonic-types/lib-task": "^7.14.4",
"@enonic-types/lib-value": "^7.14.4",
"@enonic-types/lib-websocket": "^7.14.4",
"@enonic/mock-xp": "^1.0.0",
"@eslint/js": "^9.19.0",
"@swc/core": "^1.10.12",
"@types/diffable-html": "^5.0.2",
"@types/node": "^22.13.0",
"@types/react": "^18.3.12",
"cheerio": "^1.0.0-rc.12",
"concurrently": "^9.1.2",
"diffable-html": "^5.0.0",
"eslint": "^8.57.0",
"jest-cucumber": "^4.5.0",
"jest-environment-jsdom": "^29.7.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-test-renderer": "^18.3.1",
"ts-jest": "^29.2.5",
"tsup": "^8.3.6",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0"
},
"private": true,
"scripts": {
"build": "concurrently -c auto -g --timings npm:build:*",
"build:assets": "node tsup/anyAssetFiles.js && npx tsup -d build/resources/main/assets || exit 0",
"build:server": "node tsup/anyServerFiles.js && npx tsup -d build/resources/main || exit 0",
"check": "concurrently -c auto -g --timings npm:check:types npm:lint",
"check:types": "concurrently -g -r --timings npm:check:types:*",
"check:types:assets": "node tsup/anyAssetFiles.js && npx tsc --noEmit -p src/main/resources/assets/tsconfig.json || exit 0",
"check:types:server": "node tsup/anyServerFiles.js && npx tsc --noEmit -p src/main/resources/tsconfig.json || exit 0",
"cov": "jest --no-cache --coverage",
"lint": "eslint --cache",
"test": "jest --no-cache"
}
}