forked from yuudi/rclone-webui-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.14 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
{
"name": "rclone-webui-angular",
"version": "0.8.2",
"private": true,
"scripts": {
"build:dev": "ng build --configuration development",
"build:embed": "ng build --configuration production,embed",
"build:native": "ng build --configuration production,native",
"build:standalone": "ng build --configuration production,standalone",
"check-updates": "npm-check-updates",
"extract-i18n": "ng extract-i18n",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "ng lint --fix",
"lint:prettier": "prettier ./src --write",
"ng": "ng",
"start": "ng serve",
"test": "ng test",
"watch": "ng build --watch --configuration development,embed"
},
"dependencies": {
"@angular/animations": "^16.2.0",
"@angular/cdk": "^16.2.0",
"@angular/common": "^16.2.0",
"@angular/compiler": "^16.2.0",
"@angular/core": "^16.2.0",
"@angular/forms": "^16.2.0",
"@angular/material": "^16.2.0",
"@angular/platform-browser": "^16.2.0",
"@angular/platform-browser-dynamic": "^16.2.0",
"@angular/router": "^16.2.0",
"@angular/service-worker": "^16.2.0",
"normalize.css": "^8.0.1",
"rxjs": "~7.8.1",
"tslib": "^2.6.1",
"uuid": "^9.0.0",
"zone.js": "^0.13.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.2.0",
"@angular-eslint/builder": "^16.1.0",
"@angular-eslint/eslint-plugin": "^16.1.0",
"@angular-eslint/eslint-plugin-template": "^16.1.0",
"@angular-eslint/schematics": "^16.1.0",
"@angular-eslint/template-parser": "^16.1.0",
"@angular/cli": "~16.2.0",
"@angular/compiler-cli": "^16.2.0",
"@angular/localize": "^16.2.0",
"@types/jasmine": "^4.3.5",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"eslint": "^8.47.0",
"jasmine-core": "^5.1.0",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"ng-extract-i18n-merge": "^2.7.0",
"npm-check-updates": "^16.10.18",
"prettier": "^3.0.1",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-packagejson": "^2.5.3",
"typescript": "~5.1.6"
}
}