-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
76 lines (76 loc) · 2.52 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
{
"name": "@k11r/extensions",
"license": "MIT",
"scripts": {
"nx": "nx",
"start": "nx serve",
"build": "nx run-many --target=build --all",
"test": "echo \"nx test\"",
"lint": "nx workspace-lint && nx lint",
"e2e": "nx e2e",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx migrate latest",
"workspace-generator": "nx workspace-generator",
"dep-graph": "nx dep-graph",
"help": "nx help",
"prepare": "husky install",
"release": "npm run publish",
"publish": "node -r @swc-node/register tools/publish.ts"
},
"private": true,
"dependencies": {
"tslib": "^2.0.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.0.3",
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@commitlint/config-nx-scopes": "^19.0.0",
"@commitlint/cz-commitlint": "^19.0.0",
"@nx/eslint": "20.1.2",
"@nx/eslint-plugin": "20.1.2",
"@nx/jest": "20.1.2",
"@nx/js": "20.1.2",
"@nx/node": "20.1.2",
"@nx/workspace": "20.1.2",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@swc-node/register": "1.9.2",
"@swc/core": "1.5.7",
"@types/jest": "29.5.14",
"@types/node": "18.19.9",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"commitizen": "^4.3.0",
"conventional-changelog-conventionalcommits": "^4.6.3",
"dotenv": "10.0.0",
"esbuild": "0.19.5",
"eslint": "8.57.0",
"eslint-config-prettier": "9.0.0",
"git-cz": "^4.9.0",
"husky": "^8.0.0",
"jest": "29.7.0",
"lint-staged": "^14.0.1",
"nx": "20.1.2",
"prettier": "^3.3.1",
"semantic-release": "^19.0.2",
"ts-jest": "29.1.1",
"typescript": "5.5.4",
"wrangler": "^3.11.0"
},
"config": {
"commitizen": {
"path": "git-cz"
}
}
}