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
81 lines (81 loc) · 2.66 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.66 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
{
"name": "nav",
"version": "17.0.0",
"author": "xiejiahe",
"homepage": "https://github.com/xjh22222228/nav",
"scripts": {
"format": "prettier --write \"**/*.{ts,cjs,mjs}\"",
"start": "npm run init && ng serve --host 0.0.0.0 --port=7001 --live-reload=false",
"start:reload": "npm run init && ng serve --host 0.0.0.0 --port=7001",
"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 format"
},
"type": "module",
"private": true,
"dependencies": {
"@angular/animations": "^19.2.11",
"@angular/common": "^19.2.11",
"@angular/compiler": "^19.2.11",
"@angular/core": "^19.2.11",
"@angular/forms": "^19.2.11",
"@angular/platform-browser": "^19.2.11",
"@angular/platform-browser-dynamic": "^19.2.11",
"@angular/router": "^19.2.11",
"@angular/service-worker": "^19.2.11",
"axios": "^1.9.0",
"chrome-finder": "^1.0.7",
"cron": "^4.3.0",
"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": "^19.2.2",
"nprogress": "^0.2.0",
"puppeteer": "^24.8.2",
"qs": "^6.14.0",
"rough-notation": "^0.5.1",
"rxjs": "~7.8.2",
"sharp": "^0.34.1",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.2.12",
"@angular/cli": "^19.2.12",
"@angular/compiler-cli": "^19.2.11",
"@tailwindcss/postcss": "^4.1.7",
"@types/compression": "^1.7.5",
"@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.0",
"connect-history-api-fallback": "^2.0.0",
"cors": "^2.8.5",
"info-web": "^0.0.46",
"jasmine-core": "~5.7.1",
"lint-staged": "^16.0.0",
"nodemailer": "^7.0.3",
"pm2": "^6.0.6",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"tailwindcss": "^4.1.7",
"tslib": "^2.8.1",
"tsx": "^4.19.4",
"typescript": "~5.8.3"
}
}