-
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) · 3.47 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 3.47 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": "piying-website",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "npm run md-to-html && ng build && cp ./dist/piying-website/website/en/index.html ./dist/piying-website/website/en/404.html&& cp ./dist/piying-website/website/zh-hans/index.html ./dist/piying-website/website/zh-hans/404.html && cp ./assets/* ./dist/piying-website/website && cp ./dist/piying-website/website/index.html ./dist/piying-website/website/404.html",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"serve:ssr:piying-website": "node dist/piying-website/server/server.mjs",
"build:online-type": "dts-bundle-generator ./src/declaration/online-type.ts --project ./tsconfig.online-type.json -o public/declaration/online-type.d.ts --external-inlines valibot --external-inlines @piying/view-angular --external-inlines @piying/view-angular-core --no-check --no-banner --inline-declare-global --inline-declare-externals --export-referenced-types",
"build:examples": "tsx ./script/demo-to-json.ts",
"lint": "eslint --fix ./src && prettier ./src --write && eslint --fix ./script && prettier ./script --write ",
"i18n:g": "tsx ./script/doc-extra.ts && i18n pl ./i18n/input/doc.json ./i18n/output/doc -n zh-hans --update && ng extract-i18n --output-path src/locale",
"i18n:c": "i18n merge ./i18n/merge ./i18n/output/web ./i18n/output/doc && i18n convert ./i18n/merge ./public/i18n",
"md-to-html": "tsx ./script/doc-to-html/index.ts",
"update": "ng update @angular/core@21 @angular/cdk@21 @angular/material@21 @angular/cli@21 --force --allow-dirty"
},
"private": true,
"dependencies": {
"@angular/cdk": "^21.2.8",
"@angular/common": "^21.2.10",
"@angular/compiler": "^21.2.10",
"@angular/core": "^21.2.10",
"@angular/elements": "^21.2.10",
"@angular/forms": "^21.2.10",
"@angular/material": "^21.2.8",
"@angular/platform-browser": "^21.2.10",
"@angular/platform-server": "^21.2.10",
"@angular/router": "^21.2.10",
"@angular/ssr": "^21.2.8",
"@cyia/localize": "^1.3.5",
"@cyia/ngx-common": "^20.0.4",
"@piying-lib/angular-daisyui": "^1.1.7",
"@piying/view-angular": "2.9.0",
"@valibot/i18n": "^1.0.0",
"cally": "^0.9.2",
"express": "^5.1.0",
"front-matter": "^4.0.2",
"highlight.js": "^11.11.1",
"html-entities": "^2.6.0",
"json-formatter-js": "^2.5.23",
"marked": "^16.0.0",
"marked-directive": "^1.0.7",
"marked-highlight": "^2.2.2",
"material-icons": "^1.13.14",
"monaco-editor": "^0.52.2",
"rxjs": "~7.8.0",
"tailwindcss": "^4.2.4",
"tslib": "^2.3.0",
"valibot": "^1.1.0"
},
"devDependencies": {
"@angular/build": "^21.2.8",
"@angular/cli": "^21.2.8",
"@angular/compiler-cli": "^21.2.10",
"@angular/localize": "^21.2.10",
"@eslint/js": "^9.31.0",
"@tailwindcss/postcss": "^4.1.11",
"@types/express": "^5.0.1",
"@types/jasmine": "~5.1.0",
"@types/node": "^20.17.19",
"daisyui": "^5.5.19",
"dts-bundle-generator": "^9.5.1",
"eslint": "^9.31.0",
"eslint-plugin-unused-imports": "^4.4.1",
"fast-glob": "^3.3.3",
"jasmine-core": "~5.8.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"postcss": "^8.5.3",
"prettier": "^3.8.1",
"shiki": "^4.0.1",
"tsx": "^4.20.3",
"typescript": "~5.9.3",
"typescript-eslint": "^8.56.1"
}
}