-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) 路 1.83 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) 路 1.83 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
{
"name": "demo",
"version": "0.0.0",
"license": "MIT",
"private": true,
"scripts": {
"ng": "ng",
"postinstall": "playwright install chromium",
"dev": "ng serve",
"test-lib": "ng test fab-speed-dial",
"test-demo": "ng test demo",
"lint": "ng lint --max-warnings 0",
"e2e": "ng e2e",
"build-lib": "ng build fab-speed-dial && cp -v README.md dist/fab-speed-dial/ && cd dist/fab-speed-dial && pnpm version --no-git-checks --no-git-tag-version `git describe --tags --always`",
"build-demo": "pnpm build-lib && ng build demo --aot --base-href /fab-speed-dial/ && cp dist/demo/browser/index.html dist/demo/browser/404.html",
"serve-demo": "echo '馃挕 open http://localhost:8000/fab-speed-dial/' && mkdir -p dist/server && ln -fs ../demo/browser dist/server/fab-speed-dial && php -S localhost:8000 -t dist/server/"
},
"packageManager": "pnpm@11.2.1",
"dependencies": {
"@angular/cdk": "22.1.1",
"@angular/common": "^22.1.1",
"@angular/compiler": "^22.1.1",
"@angular/core": "^22.1.1",
"@angular/forms": "^22.1.1",
"@angular/material": "22.1.1",
"@angular/platform-browser": "^22.1.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
"@angular-eslint/builder": "^22.1.0",
"@angular/build": "^22.1.3",
"@angular/cli": "^22.1.3",
"@angular/compiler-cli": "^22.1.1",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.60.0",
"angular-eslint": "^22.1.0",
"eslint": "^10.8.1",
"jsdom": "^30.0.1",
"ng-packagr": "^22.1.1",
"playwright-ng-schematics": "22.0.3",
"prettier": "^3.6.2",
"typescript": "~6.0.3",
"typescript-eslint": "^8.29.1",
"vitest": "^4.1.10"
}
}