-
Notifications
You must be signed in to change notification settings - Fork 268
/
package.json
110 lines (110 loc) · 3.29 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
{
"name": "conduit",
"version": "19.0.2",
"license": "MIT",
"scripts": {
"ng": "nx",
"nx": "nx",
"start": "nx run conduit: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",
"format": "nx format:write --base=main",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx migrate latest",
"update:check": "ng update",
"dep-graph": "nx dep-graph",
"help": "nx help",
"workspace-generator": "nx workspace-generator"
},
"private": true,
"dependencies": {
"@angular/animations": "19.0.1",
"@angular/common": "19.0.1",
"@angular/compiler": "19.0.1",
"@angular/core": "19.0.1",
"@angular/forms": "19.0.1",
"@angular/platform-browser": "19.0.1",
"@angular/platform-browser-dynamic": "19.0.1",
"@angular/router": "19.0.1",
"@ngrx/signals": "18.1.1",
"@ngrx/operators": "18.1.1",
"@nx/angular": "20.1.3",
"core-js": "3.31.0",
"eslint-plugin-ngrx": "2.1.4",
"marked": "5.0.1",
"rxjs": "7.8.1",
"tslib": "2.6.2"
},
"devDependencies": {
"@angular-devkit/architect": "0.1900.2",
"@angular-devkit/build-angular": "19.0.2",
"@angular-devkit/core": "19.0.2",
"@angular-devkit/schematics": "19.0.2",
"@angular-eslint/eslint-plugin": "18.4.2",
"@angular-eslint/eslint-plugin-template": "18.4.2",
"@angular-eslint/template-parser": "18.4.2",
"@angular/cli": "19.0.2",
"@angular/compiler-cli": "19.0.1",
"@angular/language-service": "19.0.1",
"@badeball/cypress-cucumber-preprocessor": "^19.2.0",
"@bahmutov/cypress-esbuild-preprocessor": "^2.2.0",
"@nx/cypress": "20.1.3",
"@nx/eslint": "20.1.3",
"@nx/eslint-plugin": "20.1.3",
"@nx/jest": "20.1.3",
"@nx/workspace": "20.1.3",
"@schematics/angular": "18.2.1",
"@types/jest": "29.5.12",
"@types/marked": "4.3.1",
"@types/node": "18.19.21",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@typescript-eslint/utils": "7.18.0",
"cypress": "13.13.2",
"dotenv": "10.0.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-cypress": "2.14.0",
"eslint-plugin-rxjs": "^5.0.3",
"husky": "1.3.1",
"jasmine-marbles": "0.9.2",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-preset-angular": "14.3.2",
"ng-mocks": "14.13.0",
"nx": "20.1.3",
"prettier": "3.1.0",
"react": "^18.2.6",
"react-dom": "^18.2.6",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"typescript": "5.5.4",
"webpack": "5.88.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run format"
}
},
"cypress-cucumber-preprocessor": {
"stepDefinitions": [
"src/e2e/article-list/**/*.ts",
"src/e2e/login/**/*.ts",
"src/e2e/logout/**/*.ts",
"src/e2e/new-article/**/*.ts",
"src/e2e/register/**/*.ts",
"src/e2e/settings/**/*.ts"
]
}
}