-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.42 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.42 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
{
"name": "cheetah-os",
"version": "4.10.02",
"description": "Desktop environment in the browser",
"author": "CM",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"purge": "ng cache clean",
"build": "npm run build:fs && ng build",
"build:fs": "cd src/osdrive && node Cheetah/System/BrowserFS/scripts/make_http_index.js > ../osdrive.json",
"clean": "rm -rf node_modules",
"reinstall": "npm run clean && npm install",
"rebuild": "npm run clean && npm install && npm run build",
"watch": "ng build --watch --configuration development",
"lint": "ng lint",
"prepare": "husky install",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": "eslint --fix"
},
"private": true,
"dependencies": {
"@angular/animations": "^19.1.6",
"@angular/cdk": "^19.1.4",
"@angular/common": "^19.1.6",
"@angular/compiler": "^19.1.6",
"@angular/core": "^19.1.6",
"@angular/forms": "^19.1.6",
"@angular/platform-browser": "^19.1.6",
"@angular/platform-browser-dynamic": "^19.1.6",
"@angular/router": "^19.1.6",
"@types/socket.io-client": "^1.4.36",
"angular2-draggable": "^16.0.0",
"fflate": "^0.8.2",
"html-to-image": "^1.11.11",
"ini": "^5.0.0",
"jszip": "^3.10.1",
"monaco-editor": "^0.52.2",
"ngx-monaco-editor-v2": "^19.0.2",
"notyf": "^3.10.0",
"rxjs": "^7.8.1",
"socket.io-client": "^4.8.1",
"tslib": "^2.3.0",
"zone.js": "^0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.1.7",
"@angular-eslint/builder": "^19.1.0",
"@angular-eslint/eslint-plugin": "^19.1.0",
"@angular-eslint/eslint-plugin-template": "^19.1.0",
"@angular-eslint/schematics": "^19.1.0",
"@angular-eslint/template-parser": "^19.1.0",
"@angular/cli": "^19.1.7",
"@angular/compiler-cli": "^19.1.6",
"@types/filesystem": "^0.0.36",
"@types/ini": "^4.1.1",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"eslint": "^9.20.1",
"eslint-config-google": "^0.14.0",
"eslint-plugin-angular": "^4.1.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-preset-angular": "^14.1.1",
"karma-coverage": "~2.2.0",
"lint-staged": "^15.4.3",
"path-browserify": "^1.0.1",
"typescript": "^5.7.2",
"url": "^0.11.0"
}
}