-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
71 lines (71 loc) · 2.21 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
{
"name": "paimon-next-website",
"version": "0.0.0",
"scripts": {
"parse": "cd library/markdown-parser && npm run parse",
"prestart": "npm run parse",
"start": "ng serve --port 8801",
"prebuild": "npm run parse",
"build": "ng build",
"serve:ssr": "node dist/server/server.mjs",
"i18n:extract": "ngx-translate-extract --input ./src --output ./src/assets/i18n/{en,zh}.json -ss -k --clean --format json",
"prepare": "husky",
"lint": "ng lint --cache",
"lint:fix": "ng lint --cache --fix"
},
"private": true,
"dependencies": {
"@angular/animations": "^18.2.0",
"@angular/common": "^18.2.0",
"@angular/compiler": "^18.2.0",
"@angular/core": "^18.2.0",
"@angular/forms": "^18.2.0",
"@angular/platform-browser": "^18.2.0",
"@angular/platform-browser-dynamic": "^18.2.0",
"@angular/platform-server": "^18.2.0",
"@angular/router": "^18.2.0",
"@angular/ssr": "^18.2.2",
"@ngx-translate/core": "^15.0.0",
"@ngx-translate/http-loader": "^8.0.0",
"express": "^4.18.2",
"github-slugger": "^1.3.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.2",
"@angular/cli": "^18.2.2",
"@angular/compiler-cli": "^18.2.0",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-angular": "^19.5.0",
"@eslint/compat": "^1.1.1",
"@eslint/eslintrc": "^3.1.0",
"@types/express": "^4.17.17",
"@types/github-slugger": "^1.3.0",
"@types/node": "^22.7.0",
"@vendure/ngx-translate-extract": "^9.2.1",
"angular-eslint": "18.3.1",
"autoprefixer": "^10.4.20",
"eslint": "^9.11.1",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jsdoc": "^50.3.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "^8.4.44",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"tailwindcss": "^3.4.10",
"tailwindcss-animation-delay": "^2.0.1",
"typescript": "~5.5.2",
"typescript-eslint": "8.2.0"
},
"lint-staged": {
"*.{ts,html}": [
"eslint --fix"
]
}
}