-
Notifications
You must be signed in to change notification settings - Fork 156
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.46 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.46 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
{
"name": "client",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "nx",
"start": "nx serve --proxy-config proxy.conf.json",
"start:cors": "nx serve -c cors",
"build": "nx build -c production",
"test": "nx test",
"lint": "nx lint",
"e2e": "nx e2e",
"postinstall": "node ./decorate-angular-cli.js"
},
"private": true,
"dependencies": {
"@angular/animations": "20.1.2",
"@angular/cdk": "20.1.2",
"@angular/common": "20.1.2",
"@angular/compiler": "20.1.2",
"@angular/core": "20.1.2",
"@angular/forms": "20.1.2",
"@angular/material": "20.1.2",
"@angular/platform-browser": "20.1.2",
"@angular/platform-browser-dynamic": "20.1.2",
"@angular/router": "20.1.2",
"@nx/angular": "21.3.2",
"rxjs": "7.8.1",
"storybook": "9.0.5",
"tslib": "^2.3.0",
"web-animations-js": "^2.3.2",
"zone.js": "0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "20.1.1",
"@angular-devkit/core": "20.1.1",
"@angular-devkit/schematics": "20.1.1",
"@angular-eslint/eslint-plugin": "20.0.0",
"@angular-eslint/eslint-plugin-template": "20.0.0",
"@angular-eslint/template-parser": "20.0.0",
"@angular/cli": "~20.0.0",
"@angular/compiler-cli": "20.1.2",
"@angular/language-service": "20.1.2",
"@nx/cypress": "21.3.2",
"@nx/jest": "21.3.2",
"@nx/storybook": "21.3.2",
"@nx/workspace": "21.3.2",
"@schematics/angular": "20.1.1",
"@storybook/core-server": "8.6.11",
"@types/jasmine": "~4.0.0",
"@types/jest": "30.0.0",
"@types/node": "18.16.9",
"@typescript-eslint/utils": "^7.16.0",
"autoprefixer": "^10.4.7",
"codelyzer": "^0.0.28",
"cypress": "^14.4.0",
"eslint": "^8.50.0",
"eslint-plugin-cypress": "2.13.4",
"eslint-plugin-storybook": "^0.6.14",
"jasmine-core": "4.2.0",
"jasmine-spec-reporter": "~5.0.0",
"jest": "30.0.5",
"jest-environment-jsdom": "30.0.5",
"jest-preset-angular": "14.4.2",
"karma": "6.4.2",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.0.0",
"nx": "21.3.2",
"postcss": "^8.4.14",
"prettier": "^3.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.1.3",
"ts-jest": "29.1.4",
"ts-node": "10.9.1",
"tslint": "^6.1.0",
"typescript": "5.8.3",
"webpack": "^5.64.0"
}
}