-
-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.26 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.26 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
{
"productName": "Sync-in",
"name": "@sync-in-server/frontend",
"author": {
"name": "Johan Legrand",
"email": "johan.legrand@sync-in.com"
},
"license": "AGPL-3.0-or-later",
"private": true,
"scripts": {
"build-assets": "node scripts/build-assets.mjs",
"prewatch": "NODE_ENV=development npm run build-assets",
"prebuild": "npm run build-assets",
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:dev": "ng build --configuration development",
"lint": "ng lint",
"lint:staged": "if git diff --cached --name-only --diff-filter=ACM --relative -- . | grep -q .; then ng lint; fi",
"lint:fix": "ng lint --fix",
"update:angular": "ng update @angular/cli@latest @angular/core@latest --allow-dirty"
},
"dependencies": {
"@acrodata/code-editor": "^0.6.0",
"@ali-hm/angular-tree-component": "^20.1.6",
"@angular/animations": "^20.1.7",
"@angular/cdk": "^20.1.6",
"@angular/common": "^20.1.7",
"@angular/compiler": "^20.1.7",
"@angular/core": "^20.1.7",
"@angular/forms": "^20.1.7",
"@angular/platform-browser": "^20.1.7",
"@angular/platform-browser-dynamic": "^20.1.7",
"@angular/router": "^20.1.7",
"@codemirror/language-data": "^6.5.2",
"@fortawesome/angular-fontawesome": "^3.0.0",
"@fortawesome/fontawesome-svg-core": "^7.0.0",
"@fortawesome/free-brands-svg-icons": "^7.0.0",
"@fortawesome/free-regular-svg-icons": "^7.0.0",
"@fortawesome/free-solid-svg-icons": "^7.0.0",
"@perfectmemory/ngx-contextmenu": "^20.0.0",
"@videogular/ngx-videogular": "^20.0.0",
"angular-l10n": "^17.0.0",
"codemirror": "^6.0.2",
"dayjs": "^1.11.13",
"ngx-bootstrap": "^20.0.0",
"ngx-clipboard": "^16.0.0",
"ngx-socket-io": "4.9.3",
"ngx-toastr": "^19.0.0",
"rxjs": "^7.8.2",
"tslib": "^2.7.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular/build": "^20.1.6",
"@angular/cli": "^20.1.6",
"@angular/compiler-cli": "^20.1.7",
"@types/codemirror": "^5.60.15",
"angular-eslint": "^20.1.1",
"bootstrap": "^5.3.5",
"eslint": "^9.15.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.1",
"extract-zip": "^2.0.1",
"typescript": "^5.9.2",
"typescript-eslint": "^8.15.0"
}
}