-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
97 lines (97 loc) · 3.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "put-your-project-name",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"lint": "ng lint --fix",
"prepare": "husky",
"pretty-quick": "pretty-quick --staged",
"server": "json-server --watch ./src/assets/data/db.json",
"storybook": "ng run Angular-V17-Template:storybook",
"build-storybook": "ng run Angular-V17-Template:build-storybook",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"private": true,
"dependencies": {
"@angular-devkit/architect": "^0.1703.8",
"@angular-devkit/core": "^17.3.8",
"@angular/animations": "17.3.11",
"@angular/common": "17.3.11",
"@angular/compiler": "17.3.11",
"@angular/core": "17.3.11",
"@angular/forms": "17.3.11",
"@angular/platform-browser": "17.3.11",
"@angular/platform-browser-dynamic": "17.3.11",
"@angular/platform-server": "17.3.11",
"@angular/router": "17.3.11",
"@angular/ssr": "17.3.8",
"@eslint/config-array": "^0.15.1",
"@eslint/object-schema": "^2.1.3",
"@npmcli/package-json": "^5.2.0",
"json-server": "^0.17.4",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "17.3.8",
"@angular-eslint/builder": "17.5.2",
"@angular-eslint/eslint-plugin": "17.5.2",
"@angular-eslint/eslint-plugin-template": "17.5.2",
"@angular-eslint/schematics": "17.5.2",
"@angular-eslint/template-parser": "17.5.2",
"@angular/cli": "17.3.4",
"@angular/compiler-cli": "17.3.11",
"@chromatic-com/storybook": "^1.5.0",
"@storybook/addon-essentials": "^8.1.6",
"@storybook/addon-interactions": "^8.1.6",
"@storybook/addon-links": "^8.1.6",
"@storybook/addon-mdx-gfm": "^8.1.6",
"@storybook/angular": "^8.1.6",
"@storybook/blocks": "^8.1.6",
"@storybook/test": "^8.1.6",
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "6.11.0",
"@typescript-eslint/parser": "6.19.0",
"cypress": "^13.6.2",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-storybook": "^0.8.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-preset-angular": "^13.1.4",
"prettier": "^2.8.0",
"prettier-eslint": "^16.1.2",
"pretty-quick": "^3.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^8.1.6",
"typescript": "~5.2.2"
},
"jest": {
"preset": "jest-preset-angular",
"setupFilesAfterEnv": [
"<rootDir>/src/setup.jest.ts"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules",
"<rootDir>/dist"
],
"globals": {
"transform": {
"^.+\\.ts?$": [
"ts-jest",
{
"tsConfig": "<rootDir>/tsconfig.spec.json"
}
]
}
}
}
}