-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.83 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.83 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
{
"name": "utility",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"prepare": "husky install",
"build": "nx run-many --target=build --parallel",
"lint": "nx run-many --target=lint --parallel",
"test": "nx run-many --target=test --parallel",
"build:ci": "nx affected:build --base=origin/master~1 --head=HEAD",
"copyAssets:ci": "nx affected --target=copyAssets --base=origin/master~1 --head=HEAD"
},
"description": "A collection of utilities",
"private": true,
"dependencies": {
"@commitlint/cli": "^17.4.3",
"@commitlint/config-conventional": "^17.4.3",
"@commitlint/config-nx-scopes": "^17.4.3",
"@commitlint/cz-commitlint": "^17.4.2",
"@swc/helpers": "~0.4.11",
"commitizen": "^4.3.1",
"lint-staged": "^15.2.10",
"object-hash": "^3.0.0",
"pako": "^2.1.0",
"tslib": "^2.8.1"
},
"devDependencies": {
"@nrwl/devkit": "18.3.5",
"@nrwl/eslint-plugin-nx": "18.3.5",
"@nrwl/jest": "18.3.5",
"@nrwl/js": "18.3.5",
"@nrwl/linter": "18.3.5",
"@nrwl/nx-plugin": "18.3.5",
"@nrwl/workspace": "18.3.5",
"@openish-u/dependabot-pr-manager": "^5.0.0",
"@swc-node/register": "^1.4.2",
"@swc/cli": "~0.1.55",
"@swc/core": "^1.2.173",
"@types/jest": "28.1.8",
"@types/node": "22.10.1",
"@types/object-hash": "^3.0.6",
"@types/pako": "^2.0.3",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"eslint": "8.48.0",
"eslint-config-prettier": "9.1.0",
"husky": "8.0.0",
"jest": "28.1.3",
"jest-environment-jsdom": "29.7.0",
"jsonc-eslint-parser": "^2.1.0",
"nx": "18.3.5",
"prettier": "3.4.1",
"semantic-release-npm-github-publish": "^1.5.4",
"semantic-release-plus": "^20.0.0",
"ts-jest": "28.0.8",
"ts-node": "10.9.2",
"typescript": "5.3.3"
}
}