-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 4.23 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 4.23 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "ngneat-dag",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "nx",
"postinstall": "node ./decorate-angular-cli.js",
"nx": "nx",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "nx workspace-lint && ng lint",
"e2e": "ng 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",
"affected:deploy": "nx affected --target deploy",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx migrate latest",
"dep-graph": "nx dep-graph",
"help": "nx help",
"contributors:add": "all-contributors add",
"hooks:pre-commit": "node hooks/pre-commit.js",
"commit": "git-cz",
"release:first": "npm run release -- --first-release",
"build:lib": "nx build dag-manager-service --configuration production && npm run build:copy-readme",
"build:copy-readme": "cp ./README.md ./dist/libs/dag-manager-service && cp ./logo.svg ./dist/libs/dag-manager-service && cp ./demo.gif ./dist/libs/dag-manager-service",
"test:lib": "ng test @scope/dag",
"release": "cd libs/dag-manager-service && standard-version --infile ../..CHANGELOG.md",
"test:lib:headless": "cross-env CI=true npm run test:lib",
"build:prod": "NODE_ENV=production ng build --configuration production",
"workspace-generator": "nx workspace-generator"
},
"private": true,
"dependencies": {
"@angular/animations": "21.1.3",
"@angular/common": "21.1.3",
"@angular/compiler": "21.1.3",
"@angular/core": "21.1.3",
"@angular/forms": "21.1.3",
"@angular/platform-browser": "21.1.3",
"@angular/platform-browser-dynamic": "21.1.3",
"@angular/router": "21.1.3",
"@ngneat/lib": "^5.0.0",
"@nx/angular": "22.4.5",
"leader-line": "^1.0.7",
"rxjs": "7.8.0",
"tailwindcss": "^3.1.8",
"tslib": "^2.4.0",
"zone.js": "0.16.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "21.1.3",
"@angular-devkit/core": "21.1.3",
"@angular-devkit/schematics": "21.1.3",
"@angular-eslint/eslint-plugin": "18.3.0",
"@angular-eslint/eslint-plugin-template": "18.3.0",
"@angular-eslint/template-parser": "18.3.0",
"@angular/cli": "21.1.3",
"@angular/compiler-cli": "21.1.3",
"@angular/language-service": "21.1.3",
"@commitlint/cli": "17.1.2",
"@commitlint/config-angular": "^17.1.0",
"@commitlint/config-conventional": "^17.1.0",
"@nx/cypress": "22.4.5",
"@nx/eslint-plugin": "22.4.5",
"@nx/jest": "22.4.5",
"@nx/workspace": "22.4.5",
"@schematics/angular": "21.1.3",
"@types/jest": "30.0.0",
"@types/node": "18.16.9",
"@typescript-eslint/eslint-plugin": "7.16.0",
"@typescript-eslint/parser": "7.16.0",
"all-contributors-cli": "^6.24.0",
"autoprefixer": "^10.4.12",
"codelyzer": "6.0.2",
"cross-env": "^7.0.3",
"cypress": "15.9.0",
"dotenv": "16.0.3",
"eslint": "8.57.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-cypress": "2.15.1",
"git-cz": "^4.9.0",
"husky": "^8.0.3",
"injection-js": "^2.4.0",
"jest": "30.2.0",
"jest-environment-jsdom": "30.2.0",
"jest-preset-angular": "16.0.0",
"jest-util": "30.2.0",
"lint-staged": "^13.0.3",
"ng-packagr": "21.1.0",
"nx": "22.4.5",
"postcss": "^8.4.18",
"postcss-import": "^15.0.0",
"postcss-loader": "^7.0.1",
"postcss-preset-env": "^7.8.2",
"postcss-scss": "^4.0.5",
"postcss-url": "^10.1.3",
"prettier": "2.7.1",
"standard-version": "^9.5.0",
"ts-jest": "29.4.6",
"ts-node": "10.9.1",
"typescript": "5.9.3"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,json,css,scss,ts,html,component.html}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint $HUSKY_GIT_PARAMS",
"pre-commit": "npm run hooks:pre-commit && lint-staged",
"pre-push": ""
}
}
}