-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
86 lines (86 loc) · 2.9 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
{
"name": "angular-testing-recipes",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng test",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"lint": "ng lint && stylelint 'src/**/*.css'",
"lint:fix": "ng lint --fix && stylelint 'src/**/*.css' --fix",
"docs:json": "compodoc --silent -p ./tsconfig.json -e json -d .storybook/",
"prestorybook": "npm run docs:json",
"storybook": "ng run angular-testing-recipes:storybook",
"prestorybook:build": "npm run prestorybook",
"storybook:build": "ng run angular-testing-recipes:build-storybook",
"vistest": "./vistest/vistest.mjs",
"vistest:check": "npm run vistest --check",
"vistest:update": "npm run vistest --update"
},
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": "^18.16.1"
},
"dependencies": {
"@angular/animations": "^16.1.3",
"@angular/cdk": "^16.1.3",
"@angular/common": "^16.1.3",
"@angular/compiler": "^16.1.3",
"@angular/core": "^16.1.3",
"@angular/forms": "^16.1.3",
"@angular/platform-browser": "^16.1.3",
"@angular/platform-browser-dynamic": "^16.1.3",
"@angular/router": "^16.1.3",
"rxjs": "^7.0.0",
"tslib": "^2.4.0",
"zone.js": "~0.13.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.1.3",
"@angular-eslint/builder": "16.1.1",
"@angular-eslint/eslint-plugin": "16.1.1",
"@angular-eslint/eslint-plugin-template": "16.1.1",
"@angular-eslint/schematics": "16.1.1",
"@angular-eslint/template-parser": "16.1.1",
"@angular/cli": "^16.1.3",
"@angular/compiler-cli": "^16.1.3",
"@angular/elements": "^16.1.3",
"@compodoc/compodoc": "^1.1.19",
"@storybook/addon-actions": "^7.0.24",
"@storybook/addon-essentials": "^7.0.24",
"@storybook/addon-links": "^7.0.24",
"@storybook/angular": "^7.0.24",
"@testing-library/angular": "^14.0.0",
"@testing-library/jasmine-dom": "^1.3.0",
"@testing-library/user-event": "^14.4.3",
"@types/jasmine": "~4.3.0",
"@types/node": "^20.0.0",
"@types/testing-library__jasmine-dom": "^1.3.0",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.39.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-html": "^7.0.0",
"eslint-plugin-prettier": "^4.0.0",
"jasmine-core": "~5.0.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"prettier": "^2.3.1",
"puppeteer": "^21.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"reg-cli": "^0.17.7",
"storybook": "^7.0.24",
"storycap": "^4.0.0",
"stylelint": "^15.0.0",
"stylelint-config-standard": "^33.0.0",
"stylelint-prettier": "^3.0.0",
"typescript": "~4.9.5",
"zx": "^7.0.0"
}
}