-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
80 lines (80 loc) · 2.32 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": "@srleecode/domain",
"version": "19.5.6",
"private": true,
"description": "Nrwl nx plugin to allow operations at the domain level",
"homepage": "https://github.com/srleecode/domain",
"license": "MIT",
"author": "Scott Lee",
"scripts": {
"affected": "nx affected",
"lint": "nx lint domain",
"test": "nx test domain",
"build": "nx build domain",
"create-version": "npx nx run workspace:version",
"dep-graph": "nx dep-graph",
"e2e": "node --experimental-modules ./e2e.mjs",
"format": "nx format:write",
"format:check": "nx format:check",
"format:write": "nx format:write",
"help": "nx help",
"nx": "nx",
"prepare": "husky install",
"publish": "npm run build && npm publish ./dist/packages/domain --access=public",
"update": "nx migrate latest",
"workspace-generator": "nx workspace-generator"
},
"dependencies": {
"@nx/devkit": "19.5.6",
"@storybook/builder-webpack5": "7.5.3",
"@storybook/core-server": "7.5.3",
"@storybook/manager-webpack5": "6.5.16",
"rxjs": "^7.8.1",
"tslib": "^2.6.2",
"@angular/core": "18.1.3"
},
"devDependencies": {
"@angular-devkit/core": "18.1.3",
"@angular-devkit/schematics": "18.1.3",
"@commitlint/cli": "^18.4.2",
"@commitlint/config-angular": "^18.4.2",
"@swc-node/register": "1.9.2",
"@swc/core": "1.5.7",
"@types/jest": "29.5.8",
"@types/node": "^18.16.9",
"@typescript-eslint/eslint-plugin": "7.16.0",
"@typescript-eslint/parser": "7.16.0",
"child_process": "^1.0.2",
"dotenv": "16.3.1",
"eslint": "8.57.0",
"eslint-config-prettier": "9.0.0",
"husky": "^8.0.3",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"nx": "19.5.6",
"prettier": "3.3.3",
"rimraf": "^5.0.5",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"tslib": "^2.6.2",
"typescript": "5.5.4",
"@nx/workspace": "19.5.6",
"@nx/storybook": "19.5.6",
"@nx/js": "19.5.6",
"@nx/eslint-plugin": "19.5.6",
"@nx/cypress": "19.5.6",
"@nx/plugin": "19.5.6",
"@nx/node": "19.5.6",
"@nx/jest": "19.5.6",
"@nx/angular": "19.5.6",
"@nx/eslint": "19.5.6"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"optionalDependencies": {
"@nx/nx-linux-x64-gnu": "17.3.1",
"@nx/nx-win32-x64-msvc": "17.3.1"
}
}