forked from ZEISS/angular-styleguide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 3.62 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
{
"name": "angular-redux-shop",
"version": "1.0.0",
"license": "MIT",
"private": true,
"description": "Sample project for ZDI Angular Styleguide",
"keywords": [
"angular",
"styleguide"
],
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:prod": "ng build --configuration=production --base-href=/angular-styleguide/",
"test": "ng test",
"test:ci": "ng test --watch=false --browsers=ChromeHeadless",
"lint": "ng lint",
"stylelint": "stylelint src/**/{*.scss,*.css}",
"e2e:playwright": "(set TS_NODE_PROJECT=./e2e-playwright/tsconfig.json) && playwright test --config=./e2e-playwright/playwright.config.ts",
"e2e:playwright:ci": "(set TS_NODE_PROJECT=./e2e-playwright/tsconfig.json) && playwright test --config=./e2e-playwright/playwright.config.ci.ts",
"e2e:playwright:ui": "(set TS_NODE_PROJECT=./e2e-playwright/tsconfig.json) && playwright test --ui --config=./e2e-playwright/playwright.config.ts",
"e2e:playwright:ci-browserstack": "(set TS_NODE_PROJECT=./e2e-playwright/tsconfig.json) && browserstack-node-sdk playwright test --config=./e2e-playwright/playwright.config.ci.ts",
"e2e:wdio": "(set TS_NODE_PROJECT=./e2e-wdio/tsconfig.json) && wdio run ./e2e-wdio/wdio.conf.ts",
"e2e:wdio:ci": "start-server-and-test start http://localhost:4200 e2e:wdio",
"prepare": "husky install"
},
"dependencies": {
"@angular/animations": "17.3.6",
"@angular/common": "17.3.6",
"@angular/compiler": "17.3.6",
"@angular/core": "17.3.6",
"@angular/forms": "17.3.6",
"@angular/platform-browser": "17.3.6",
"@angular/platform-browser-dynamic": "17.3.6",
"@angular/router": "17.3.6",
"@fortawesome/angular-fontawesome": "0.14.0",
"@fortawesome/fontawesome-svg-core": "6.5.1",
"@fortawesome/free-solid-svg-icons": "6.5.1",
"@ngrx/effects": "17.2.0",
"@ngrx/store": "17.2.0",
"@ngrx/store-devtools": "17.2.0",
"bootstrap": "5.3.2",
"rxjs": "7.8.1",
"stylelint-config-scss": "1.0.0-security",
"tslib": "2.6.2",
"zone.js": "0.14.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "17.3.6",
"@angular-eslint/builder": "17.3.0",
"@angular-eslint/eslint-plugin": "17.3.0",
"@angular-eslint/eslint-plugin-template": "17.3.0",
"@angular-eslint/schematics": "17.3.0",
"@angular-eslint/template-parser": "17.3.0",
"@angular/cli": "17.3.6",
"@angular/compiler-cli": "17.3.6",
"@angular/language-service": "17.3.6",
"@ngrx/schematics": "17.2.0",
"@playwright/test": "1.43.1",
"@types/jasmine": "5.1.4",
"@types/node": "20.10.5",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@wdio/cli": "8.26.3",
"@wdio/jasmine-framework": "8.26.3",
"@wdio/local-runner": "8.26.3",
"@wdio/spec-reporter": "8.26.3",
"browserstack-node-sdk": "1.31.23",
"chromedriver": "124.0.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jasmine": "4.1.3",
"husky": "8.0.3",
"jasmine-core": "5.1.1",
"karma": "6.4.3",
"karma-chrome-launcher": "3.2.0",
"karma-coverage": "2.2.1",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.1.0",
"playwright": "1.43.1",
"postcss": "8.4.38",
"prettier": "3.2.5",
"pretty-quick": "4.0.0",
"start-server-and-test": "2.0.3",
"stylelint": "15.11.0",
"stylelint-config-sass-guidelines": "10.0.0",
"stylelint-config-standard-scss": "11.1.0",
"stylelint-no-unsupported-browser-features": "7.0.0",
"ts-node": "10.9.2",
"typescript": "5.2.2",
"wdio-chromedriver-service": "8.1.1"
}
}