forked from SortableJS/ngx-sortablejs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.2 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 2.2 KB
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
{
"name": "ngx-sortablejs",
"version": "11.1.9",
"scripts": {
"ng": "ng",
"build": "npm-run-all -s clean:build build:prod",
"start": "npm-run-all -s clean:build build:dev watch:demo",
"watch": "npm-run-all -s clean:build -p watch:lib watch:demo",
"build:prod": "ng build @talentia/ngx-sortablejs --configuration production",
"build:dev": "ng build @talentia/ngx-sortablejs --configuration development",
"watch:lib": "ng build @talentia/ngx-sortablejs --configuration development --watch",
"watch:demo": "wait-on dist/ngx-sortablejs/package.json && ng serve demo",
"demo:dev": "ng build demo --configuration development",
"demo:prod": "ng build demo --configuration production",
"clean:build": "rimraf dist .angular",
"clean:modules": "rimraf node_modules",
"clean:all": "npm-run-all -p clean:build clean:modules",
"lint": "ng lint",
"lint:lib": "ng lint @talentia/ngx-sortablejs",
"lint:app": "ng lint demo",
"lint:lib-fix": "ng lint @talentia/ngx-sortablejs --fix",
"lint:app-fix": "ng lint demo --fix",
"madge:lib": "madge --circular --ts-config ./projects/ngx-sortablejs/tsconfig.lib.prod.json --extensions ts ./projects/ngx-sortablejs/",
"madge:demo": "madge --circular --ts-config ./projects/demo/tsconfig.app.json --extensions ts ./projects/demo/src/",
"update-browserslist": "npx update-browserslist-db@latest"
},
"dependencies": {
"@angular/animations": "20.3.18",
"@angular/common": "20.3.18",
"@angular/compiler": "20.3.18",
"@angular/core": "20.3.18",
"@angular/forms": "20.3.18",
"@angular/platform-browser": "20.3.18",
"@angular/platform-browser-dynamic": "20.3.18",
"@angular/router": "20.3.18",
"bootstrap": "4.6.2",
"rxjs": "7.8.1",
"sortablejs": "1.15.0",
"tslib": "2.6.2",
"zone.js": "0.15.1"
},
"devDependencies": {
"@angular/build": "20.3.21",
"@angular/cli": "20.3.21",
"@angular/compiler-cli": "20.3.18",
"@types/sortablejs": "1.15.0",
"angular-eslint": "20.7.0",
"eslint": "9.39.1",
"ng-packagr": "20.3.2",
"npm-run-all": "4.1.5",
"rimraf": "6.1.3",
"typescript": "5.9.3",
"typescript-eslint": "8.57.2",
"wait-on": "9.0.1"
}
}