-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.8 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
{
"name": "cloudbox-frontend",
"version": "1.0.0",
"description": "This is a simple cloud storage service that allows users to upload and download files. Here you can also create folders and subfolders to organize your files",
"author": "marcode24",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"test:cov": "npm run test -- --no-watch --code-coverage --browsers=ChromeHeadlessCI",
"lint": "ng lint",
"lint:fix": "npx eslint src/app/**/*.{js,jsx,ts,tsx,html} --quiet --fix",
"prepare": "husky install"
},
"private": true,
"dependencies": {
"@angular/animations": "^14.3.0",
"@angular/common": "^14.3.0",
"@angular/compiler": "^14.3.0",
"@angular/core": "^14.3.0",
"@angular/forms": "^14.3.0",
"@angular/platform-browser": "^14.3.0",
"@angular/platform-browser-dynamic": "^14.3.0",
"@angular/router": "^14.3.0",
"rxjs": "~7.5.0",
"tslib": "^2.3.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^14.2.13",
"@angular-eslint/builder": "^14.2.13",
"@angular-eslint/eslint-plugin": "^14.2.13",
"@angular-eslint/eslint-plugin-template": "^14.2.13",
"@angular-eslint/schematics": "^14.2.13",
"@angular-eslint/template-parser": "^14.2.13",
"@angular/cli": "^14.2.13",
"@angular/compiler-cli": "^14.3.0",
"@faker-js/faker": "^7.6.0",
"@types/jasmine": "~3.10.0",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "5.27.1",
"@typescript-eslint/parser": "5.27.1",
"eslint": "^8.17.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jasmine": "^4.1.3",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"jasmine-core": "~4.0.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",
"karma-mocha-reporter": "^2.2.5",
"lint-staged": "^13.2.1",
"typescript": "~4.8.4"
},
"repository": {
"type": "git",
"url": "https://github.com/marcode24/cloudbox-frontend",
"directory": "cloudbox-frontend"
},
"bugs": {
"url": "git+https://github.com/marcode24/cloudbox-frontend/issues"
},
"homepage": "https://github.com/marcode24/cloudbox-frontend#readme",
"keywords": [
"angular",
"typescript",
"eslint",
"eslint-config-airbnb-typescript",
"eslint-plugin-import",
"eslint-plugin-jasmine",
"eslint-plugin-unused-imports",
"husky",
"lint-staged",
"cloudbox",
"cloudbox-frontend",
"file-upload",
"file-upload-angular",
"ui"
]
}