-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.69 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": "ardis-lu-frontend",
"version": "0.0.0",
"description": "This is the frontend for a personal website.",
"keywords": [
"angular",
"angularjs",
"personal",
"frontend"
],
"contributors": [
"Ardis Lu <[email protected]> (https://ardis.lu)"
],
"scripts": {
"postinstall": "git config core.hooksPath ./.git-hooks",
"ng": "ng",
"lint": "ng lint && stylelint \"src/**/*.scss\"",
"test": "ng test",
"e2e": "ng e2e",
"build": "ng build",
"postbuild": "purgecss --css dist/ardis-lu-frontend/browser/*.css --content dist/ardis-lu-frontend/browser/index.html dist/ardis-lu-frontend/browser/*.js --output dist/ardis-lu-frontend/browser/",
"tunnel": "cloudflared tunnel run",
"start": "ng serve --hmr --host 0.0.0.0",
"stage": "npm run build -- --configuration production && cd dist/ardis-lu-frontend/browser && ws --spa index.html --log.format stats --compress",
"analyze": "npm run build -- --configuration production --source-map --named-chunks && source-map-explorer dist/ardis-lu-frontend/browser/*.js --no-border-checks"
},
"private": true,
"dependencies": {
"@angular/animations": "^17.3.9",
"@angular/cdk": "^17.3.9",
"@angular/common": "^17.3.9",
"@angular/compiler": "^17.3.9",
"@angular/core": "^17.3.9",
"@angular/forms": "^17.3.9",
"@angular/material": "^17.3.9",
"@angular/platform-browser": "^17.3.9",
"@angular/platform-browser-dynamic": "^17.3.9",
"@angular/router": "^17.3.9",
"@angular/service-worker": "^17.3.9",
"fuse.js": "^7.0.0",
"rxjs": "~7.8.1",
"tslib": "^2.6.2",
"zone.js": "~0.14.6"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.3.7",
"@angular-eslint/builder": "^17.4.1",
"@angular-eslint/eslint-plugin": "^17.4.1",
"@angular-eslint/eslint-plugin-template": "^17.4.1",
"@angular-eslint/schematics": "^17.4.1",
"@angular-eslint/template-parser": "^17.4.1",
"@angular/cli": "^17.3.7",
"@angular/compiler-cli": "^17.3.9",
"@ngneat/spectator": "^18.0.2",
"@schematics/angular": "^17.3.7",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"eslint": "^9.3.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.2.5",
"eslint-plugin-prefer-arrow": "^1.2.3",
"jest": "^29.7.0",
"local-web-server": "^5.3.3",
"npm-run-all": "^4.1.5",
"playwright": "^1.44.0",
"purgecss": "^6.0.0",
"source-map-explorer": "^2.5.3",
"stylelint": "^16.5.0",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-scss": "^6.3.0",
"ts-node": "~10.9.2",
"typescript": "5.4.5"
}
}