-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.51 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
{
"name": "send-a-hug",
"version": "1.0.0",
"description": "Send a hug site.",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"format": "prettier . --write",
"cypress": "cypress run",
"cypress:open": "cypress open",
"size": "npm run build && size-limit",
"cleanBuild": "node cleanDist.js",
"test": "npm run build:builder && web-test-runner",
"test:open": "npm run build:builder && web-test-runner --open --manual",
"sitemap:gen": "npx tsx plugins/SitemapGen.ts",
"pa11y": "npx tsx ./plugins/pa11y.ts",
"build:builder": "cd plugins/builder && tsc && cd ../.."
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-syntax-decorators": "^7.25.9",
"@babel/plugin-syntax-typescript": "^7.25.9",
"@size-limit/file": "^11.1.6",
"@size-limit/preset-app": "^11.1.6",
"@size-limit/time": "^11.1.6",
"@types/babel__core": "^7.20.5",
"@types/jasmine": "^5.1.5",
"@types/less": "^3.0.7",
"@types/node": "^22.10.10",
"@types/pa11y": "^5.3.7",
"@web/dev-server-esbuild": "^1.0.3",
"@web/dev-server-rollup": "^0.6.4",
"@web/test-runner": "^0.19.0",
"@web/test-runner-commands": "^0.9.0",
"@web/test-runner-playwright": "^0.11.0",
"axe-core": "^4.10.2",
"babel-plugin-istanbul": "^7.0.0",
"command-line-args": "^6.0.1",
"cypress": "^13.17.0",
"jasmine-core": "^5.5.0",
"less": "^4.2.1",
"magic-string": "^0.30.17",
"ng-mocks": "^14.13.2",
"pa11y": "^8.0.0",
"prettier": "^3.4.2",
"rollup-plugin-tsconfig-paths": "^1.5.2",
"size-limit": "^11.1.4",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"vite": "^6.0.11"
},
"dependencies": {
"@angular/animations": "^19.1.3",
"@angular/common": "^19.1.3",
"@angular/compiler": "^19.1.3",
"@angular/compiler-cli": "^19.1.3",
"@angular/core": "^19.1.3",
"@angular/forms": "^19.1.3",
"@angular/platform-browser": "^19.1.3",
"@angular/platform-browser-dynamic": "^19.1.3",
"@angular/router": "^19.1.3",
"@angular/service-worker": "^19.1.3",
"@fortawesome/angular-fontawesome": "^1.0.0",
"@fortawesome/fontawesome-common-types": "^6.7.2",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/free-regular-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"firebase": "^11.2.0",
"idb": "^8.0.1",
"rxjs": "^7.8.1",
"zone.js": "^0.15.0"
}
}