-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.69 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.69 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
{
"name": "timer",
"version": "5.0.0",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/Klaster1/timer-5.git"
},
"author": {
"name": "Klaster_1",
"email": "klaster1@gmail.com"
},
"license": "MIT",
"homepage": "https://klaster1.github.io/timer-5",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build --configuration production && node ./scripts/gh-pages-before-add.js",
"serve:ci": "npx local-web-server --port 4200 --directory ./dist --spa timer-5/404.html",
"docker:build": "docker build -t timer-5-tests-ubuntu .",
"e2e": "playwright test e2e/fixtures",
"e2e:update-snapshots": "playwright test e2e/fixtures --update-snapshots",
"e2e:ci": "playwright test e2e/fixtures",
"e2e:docker": "docker run --rm -e PLAYWRIGHT_BASE_URL=http://host.docker.internal:4200/ -w /opt/tests -v %INIT_CWD%:/opt/tests -v /opt/tests/node_modules -it timer-5-tests-ubuntu npm run e2e",
"e2e:docker:update-snapshots": "docker run --rm -e PLAYWRIGHT_BASE_URL=http://host.docker.internal:4200/ -w /opt/tests -v %INIT_CWD%:/opt/tests -v /opt/tests/node_modules -it timer-5-tests-ubuntu npx playwright test e2e/fixtures --update-snapshots",
"e2e:all": "npm run e2e && npm run e2e:docker",
"deploy": "gh-pages --nojekyll --dotfiles --dist dist/timer-5",
"generate-screenshots": "node ./scripts/generate-screenshots.ts"
},
"private": true,
"dependencies": {
"@angular/animations": "^21.2.9",
"@angular/cdk": "^21.2.7",
"@angular/common": "^21.2.9",
"@angular/compiler": "^21.2.9",
"@angular/core": "^21.2.9",
"@angular/forms": "^21.2.9",
"@angular/material": "^21.2.7",
"@angular/platform-browser": "^21.2.9",
"@angular/platform-browser-dynamic": "^21.2.9",
"@angular/router": "^21.2.9",
"@angular/service-worker": "^21.2.9",
"@ngrx/signals": "20.1.0",
"angular2-hotkeys": "^16.0.1",
"date-fns": "^4.1.0",
"immer": "^10.2.0",
"nanoid": "^5.1.6",
"rxjs": "^7.8.2",
"tslib": "^2.8.1",
"uplot": "^1.6.32"
},
"devDependencies": {
"@angular/build": "^21.2.7",
"@angular/cli": "^21.2.7",
"@angular/compiler-cli": "^21.2.9",
"@angular/language-service": "^21.2.9",
"@napi-rs/canvas": "^0.1.71",
"@playwright/test": "^1.59.1",
"@types/node": "^24.0.1",
"baseline-browser-mapping": "^2.10.19",
"gh-pages": "^6.3.0",
"local-web-server": "^5.4.0",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.3.0",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=22.14.0"
},
"overrides": {
"@ngrx/signals": {
"@angular/common": "$@angular/common",
"@angular/core": "$@angular/core"
}
}
}