forked from bleenco/ngx-uploader
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.38 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
{
"name": "ngx-uploader-demo",
"version": "16.0.1",
"repository": {
"type": "git",
"url": "git+https://github.com/angular-ex/ngx-uploader.git"
},
"authors": [
"Thanh Pham <[email protected]>",
"Jan Kuri <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/angular-ex/ngx-uploader/issues"
},
"homepage": "http://ngx-uploader.petadev.work",
"scripts": {
"ng": "ng",
"start": "ng serve --open --proxy-config ./proxy.conf.json",
"build": "ng build",
"build:prod": "ng build ngx-uploader --configuration production && ng build ngx-uploader-demo --configuration production && tsc -p tsconfig.api.json",
"test": "ng test ngx-uploader",
"lint": "ng lint",
"e2e": "ng e2e",
"build:lib": "ng build ngx-uploader --configuration production"
},
"private": true,
"dependencies": {
"@angular/animations": "^16.2.10",
"@angular/common": "^16.2.10",
"@angular/compiler": "^16.2.10",
"@angular/core": "^16.2.10",
"@angular/forms": "^16.2.10",
"@angular/platform-browser": "^16.2.10",
"@angular/platform-browser-dynamic": "^16.2.10",
"@angular/router": "^16.2.10",
"rxjs": "~7.8.1",
"tslib": "^2.6.2",
"zone.js": "~0.13.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.2.7",
"@angular-eslint/builder": "16.2.0",
"@angular-eslint/eslint-plugin": "16.2.0",
"@angular-eslint/eslint-plugin-template": "16.2.0",
"@angular-eslint/schematics": "16.2.0",
"@angular-eslint/template-parser": "16.2.0",
"@angular/cli": "^16.2.7",
"@angular/compiler-cli": "^16.2.10",
"@angular/language-service": "^16.2.10",
"@types/body-parser": "^1.19.4",
"@types/cors": "^2.8.15",
"@types/express": "^4.17.20",
"@types/jasmine": "~4.3.2",
"@types/multer": "^1.4.9",
"@types/node": "^20.8.7",
"@types/rimraf": "^3.0.2",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"body-parser": "^1.20.2",
"bulma": "^0.9.4",
"cors": "^2.8.5",
"eslint": "^8.52.0",
"express": "^4.18.2",
"jasmine-core": "~4.6.0",
"karma": "~6.4.2",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"multer": "^1.4.5-lts.1",
"ng-packagr": "^16.2.3",
"rimraf": "^5.0.5",
"typescript": "5.1.3"
}
}