-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
110 lines (110 loc) · 3.29 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "ngx-uploadx",
"version": "7.0.0",
"description": "Angular Resumable Upload Module",
"keywords": [
"angular",
"chunk",
"resumable",
"tus",
"upload",
"uploadx"
],
"author": {
"name": "Oleg Kukhariev",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/kukhariev/ngx-uploadx.git"
},
"homepage": "https://github.com/kukhariev/ngx-uploadx#readme",
"license": "MIT",
"private": true,
"engines": {
"node": ">=18.19.1",
"npm": ">=10.2.4"
},
"scripts": {
"start": "run-p serve:dev server",
"dev": "run-p serve:dev server:debug",
"test": "ng test",
"coverage": "ng test --code-coverage",
"e2e": "npx playwright test -c e2e/e2e.config.ts",
"playwright": "npx playwright test -c e2e/playwright.config.ts",
"lint": "ng lint",
"serve:dev": "ng serve",
"serve:dev:ext": "ng serve --host=0.0.0.0 --disable-host-check",
"server": "node ./server/",
"server:debug": "node ./server/ --debug",
"build:pkg": "node scripts/build",
"build:ng": "node scripts/build-app",
"build:prod": "ng build --configuration production",
"serve:prod": "angular-http-server --path dist/app",
"build:latest": "npm run build:ng latest",
"serve:latest": "angular-http-server --path integrations/latest/dist/latest/browser",
"prepare": "husky",
"prettier": "prettier --write \"**/*.{js,json,scss,md,ts,html}\""
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.3.11",
"@angular-eslint/builder": "^17.5.3",
"@angular-eslint/eslint-plugin": "^17.5.3",
"@angular-eslint/eslint-plugin-template": "^17.5.3",
"@angular-eslint/schematics": "^17.5.3",
"@angular-eslint/template-parser": "^17.5.3",
"@angular/cli": "^17.3.11",
"@angular/common": "^17.3.0",
"@angular/compiler": "^17.3.0",
"@angular/compiler-cli": "^17.3.0",
"@angular/core": "^17.3.0",
"@angular/platform-browser": "^17.3.0",
"@angular/platform-browser-dynamic": "^17.3.0",
"@angular/router": "^17.3.0",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@playwright/test": "^1.36.1",
"@types/jasmine": "~5.1.0",
"@types/node": "^18.19.33",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@uploadx/core": "^6.1.4",
"angular-http-server": "^1.11.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jasmine-core": "~5.1.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"lint-staged": "^15.2.4",
"ng-packagr": "^17.3.0",
"npm-run-all": "^4.1.5",
"prettier": "3.2.5",
"recursive-copy": "^2.0.14",
"rimraf": "^3.0.2",
"rxjs": "~7.8.0",
"semver": "^7.5.4",
"ts-node": "^10.9.1",
"tslib": "^2.3.0",
"typescript": "~5.4.2",
"zone.js": "~0.14.3"
},
"peerDependencies": {
"@angular/core": ">=17.0.0 <20.0.0",
"rxjs": "^6.5.3 || ^7.4.0"
},
"lint-staged": {
"*.{js,json,scss,md,ts,html}": [
"prettier --write"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}