-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
129 lines (129 loc) · 4.2 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
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
{
"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": "17.0.2",
"@angular/common": "17.0.2",
"@angular/compiler": "17.0.2",
"@angular/core": "17.0.2",
"@angular/forms": "17.0.2",
"@angular/platform-browser": "17.0.2",
"@angular/platform-browser-dynamic": "17.0.2",
"@angular/router": "17.0.2",
"@ngneat/lib": "^5.0.0",
"leader-line": "^1.0.7",
"rxjs": "7.8.0",
"tailwindcss": "^3.1.8",
"tslib": "^2.4.0",
"zone.js": "0.14.2",
"@nx/angular": "17.1.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "17.0.0",
"@angular-devkit/core": "17.0.0",
"@angular-devkit/schematics": "17.0.0",
"@angular-eslint/eslint-plugin": "17.0.1",
"@angular-eslint/eslint-plugin-template": "17.0.1",
"@angular-eslint/template-parser": "17.0.1",
"@angular/cli": "~17.0.0",
"@angular/compiler-cli": "17.0.2",
"@angular/language-service": "17.0.2",
"@commitlint/cli": "17.1.2",
"@commitlint/config-angular": "^17.1.0",
"@commitlint/config-conventional": "^17.1.0",
"@schematics/angular": "17.0.0",
"@types/jest": "29.4.4",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "5.40.0",
"@typescript-eslint/parser": "5.40.0",
"all-contributors-cli": "^6.24.0",
"autoprefixer": "^10.4.12",
"codelyzer": "6.0.2",
"cross-env": "^7.0.3",
"cypress": "^13.0.0",
"dotenv": "16.0.3",
"eslint": "8.25.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-cypress": "2.15.1",
"git-cz": "^4.9.0",
"husky": "^8.0.3",
"injection-js": "^2.4.0",
"jest": "29.4.3",
"jest-environment-jsdom": "29.4.3",
"jest-preset-angular": "13.1.4",
"lint-staged": "^13.0.3",
"ng-packagr": "17.0.0",
"nx": "17.1.2",
"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.1.1",
"ts-node": "10.9.1",
"typescript": "5.2.2",
"@nx/workspace": "17.1.2",
"@nx/eslint-plugin": "17.1.2",
"@nx/cypress": "17.1.2",
"@nx/jest": "17.1.2"
},
"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": ""
}
}
}