forked from xjh22222228/nav
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.75 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.75 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
77
78
79
80
81
82
83
84
{
"name": "nav",
"version": "17.0.0",
"author": "xiejiahe",
"homepage": "https://github.com/xjh22222228/nav",
"scripts": {
"formatlint": "npm run format && npm run lint",
"lint": "oxlint",
"format": "prettier --write \"**/*.{ts,cjs,mjs}\"",
"start": "npm run init && ng serve --host 0.0.0.0 --port=7002 --live-reload=false",
"start:reload": "npm run init && ng serve --host 0.0.0.0 --port=7002",
"init": "tsx ./scripts/start.ts",
"setup": "npm run init && tsx ./scripts/build.ts",
"build-gh-pages": "npm run setup && ng build --base-href ./ --index src/index.html",
"build": "npm run setup && ng build --index src/index.html",
"watch": "ng build --watch --configuration development",
"update": "git pull && (git remote add upstream https://gitee.com/xiejiahe/nav.git || true) && git fetch upstream main && git merge upstream/main --allow-unrelated-histories --no-edit && git push",
"pull": "git pull"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,scss,md}": "npm run formatlint"
},
"type": "module",
"private": true,
"dependencies": {
"@angular/animations": "^20.1.4",
"@angular/common": "^20.1.4",
"@angular/compiler": "^20.1.4",
"@angular/core": "^20.1.4",
"@angular/forms": "^20.1.4",
"@angular/platform-browser": "^20.1.4",
"@angular/platform-browser-dynamic": "^20.1.4",
"@angular/router": "^20.1.4",
"@angular/service-worker": "^20.1.4",
"axios": "^1.11.0",
"chrome-finder": "^1.0.7",
"cron": "^4.3.3",
"dayjs": "^1.11.13",
"express": "^5.1.0",
"file-saver": "^2.0.5",
"js-base64": "^3.7.7",
"js-yaml": "^4.1.0",
"localforage": "^1.10.0",
"lz-string": "^1.5.0",
"mitt": "^3.0.1",
"ng-zorro-antd": "^20.1.0",
"nprogress": "^0.2.0",
"puppeteer": "^24.15.0",
"qs": "^6.14.0",
"rough-notation": "^0.5.1",
"rxjs": "~7.8.2",
"sharp": "^0.34.3",
"zone.js": "~0.15.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^20.1.4",
"@angular/cli": "^20.1.4",
"@angular/compiler-cli": "^20.1.4",
"@tailwindcss/postcss": "^4.1.11",
"@types/compression": "^1.8.1",
"@types/file-saver": "^2.0.7",
"@types/jasmine": "~5.1.8",
"@types/js-yaml": "^4.0.9",
"@types/nodemailer": "^6.4.17",
"@types/nprogress": "^0.2.3",
"@types/qs": "^6.14.0",
"body-parser": "^2.2.0",
"compression": "^1.8.1",
"connect-history-api-fallback": "^2.0.0",
"cors": "^2.8.5",
"info-web": "^0.0.46",
"jasmine-core": "~5.9.0",
"lint-staged": "^16.1.2",
"nodemailer": "^7.0.5",
"oxlint": "^1.9.0",
"pm2": "^6.0.8",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"tailwindcss": "^4.1.11",
"tslib": "^2.8.1",
"tsx": "^4.20.3",
"typescript": "~5.8.3"
}
}