-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.28 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "classement",
"description": "This application aims to manage ranking list by groups of elements in the form of images or texts.",
"version": "3.1.8",
"license": "GPL-3.0-or-later",
"author": {
"name": "Zéfling",
"email": "[email protected]",
"url": "http://ikilote.net"
},
"markdown": "standard",
"homepage": "https://classement.org",
"bugs": {
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "http://git.ikilote.net/classement/classement.git"
},
"scripts": {
"postinstall": "npm audit fix",
"ng": "ng",
"start": "ng serve",
"build": "ng build && npm run addchanglog && npm run addlicenses",
"build:v": "ng build --verbose && npm run addchanglog && npm run addlicenses",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"format": "npx prettier --write .",
"addchanglog": "cp CHANGELOG.md dist/classement/browser/",
"addlicenses": "mv dist/classement/3rdpartylicenses.txt dist/classement/browser/3rdpartylicenses.txt"
},
"private": true,
"engines": {
"node": ">= 20.11.1",
"npm": ">= 10.2.4"
},
"dependencies": {
"@angular/animations": "^19.0.3",
"@angular/cdk": "^19.0.3",
"@angular/common": "^19.0.3",
"@angular/compiler": "^19.0.3",
"@angular/core": "^19.0.3",
"@angular/forms": "^19.0.3",
"@angular/platform-browser": "^19.0.3",
"@angular/platform-browser-dynamic": "^19.0.3",
"@angular/router": "^19.0.3",
"@fontsource/cinzel": "^5.1.0",
"@fontsource/dela-gothic-one": "^5.1.0",
"@fontsource/hachi-maru-pop": "^5.1.0",
"@fontsource/kalam": "^5.1.0",
"@fontsource/klee-one": "^5.1.0",
"@fontsource/noto-sans": "^5.1.0",
"@fontsource/noto-sans-jp": "^5.1.0",
"@fontsource/noto-sans-kr": "^5.1.0",
"@fontsource/noto-serif": "^5.1.0",
"@fontsource/noto-serif-jp": "^5.1.1",
"@fontsource/noto-serif-kr": "^5.1.1",
"@fontsource/roboto": "^5.0.13",
"@fontsource/sunflower": "^5.1.0",
"@fontsource/train-one": "^5.1.0",
"@fontsource/zen-maru-gothic": "^5.1.0",
"@github/textarea-autosize": "0.3.3",
"@html2canvas/html2canvas": "^1.6.3",
"@jsverse/transloco": "^7.5.0",
"ajv": "^8.17.1",
"buffer": "^6.0.3",
"coloration-lib": "^0.2.0",
"marked": "^15.0.3",
"ng-select2-component": "^17.1.0",
"ngx-image-cropper": "^9.0.0",
"ngx-markdown": "^19.0.0",
"ngx-moveable": "^0.50.0",
"owasp-password-strength-test": "^1.3.0",
"pica": "^9.0.1",
"rxjs": "~7.8.1",
"ts-md5": "^1.3.1",
"tslib": "^2.3.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.0.2",
"@angular/cli": "^19.0.2",
"@angular/compiler-cli": "^19.0.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jasmine": "~3.10.0",
"@types/marked": "^6.0.0",
"@types/node": "^22.10.1",
"@types/owasp-password-strength-test": "^1.3.2",
"@types/pica": "^9.0.4",
"jasmine-core": "~3.10.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.1.0",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"postcss": "^8.4.39",
"prettier": "^3.3.3",
"prettier-plugin-css-order": "^2.1.2",
"typescript": "~5.6.3"
}
}