-
Notifications
You must be signed in to change notification settings - Fork 122
/
Copy pathpackage.json
51 lines (51 loc) · 1.62 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
{
"name": "ngx-drag-drop-workspace",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "npm run build:lib && npm run start:docs",
"start:docs": "ng serve demo",
"build:lib": "ng build dnd",
"watch:lib": "ng build dnd --watch --configuration development",
"build:docs": "ng build demo --configuration production",
"watch:docs": "ng build demo --watch --configuration development",
"test": "ng test",
"publish:stable": "npm publish ./dist/ngx-drag-drop",
"publish:next": "npm publish ./dist/ngx-drag-drop --tag next",
"prettier": "npx prettier --write ."
},
"private": true,
"dependencies": {
"@angular/animations": "^19.0.6",
"@angular/cdk": "^19.0.5",
"@angular/common": "^19.0.6",
"@angular/compiler": "^19.0.6",
"@angular/core": "^19.0.6",
"@angular/forms": "^19.0.6",
"@angular/material": "^19.0.5",
"@angular/platform-browser": "^19.0.6",
"@angular/platform-browser-dynamic": "^19.0.6",
"@angular/router": "^19.0.6",
"bootstrap": "^5.2.3",
"mobile-drag-drop": "^3.0.0-beta.0",
"rxjs": "~7.4.0",
"tslib": "^2.3.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.0.7",
"@angular/cli": "^19.0.7",
"@angular/compiler-cli": "^19.0.6",
"@types/jasmine": "~3.10.0",
"@types/node": "^12.11.1",
"jasmine-core": "~3.10.0",
"karma": "~6.3.16",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.1.0",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"ng-packagr": "^19.0.1",
"prettier": "^2.8.7",
"typescript": "~5.6.3"
}
}