forked from CirclonGroup/angular-tree-component
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.24 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 2.24 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
57
{
"name": "angular-tree-component",
"version": "11.0.12",
"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/angular-tree-component --configuration production && npm run create:dir && npm run copy:file",
"build:dev": "ng build @talentia/angular-tree-component --configuration development",
"watch:lib": "ng build @talentia/angular-tree-component --configuration development --watch",
"watch:demo": "wait-on dist/angular-tree-component/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",
"create:dir": "mkdirp ./dist/angular-tree-component/css/",
"copy:file": "copyfiles -f ./projects/angular-tree-component/src/lib/angular-tree-component.css ./dist/angular-tree-component/css",
"lint": "ng lint",
"lint:lib": "ng lint @talentia/angular-tree-component",
"lint:app": "ng lint demo",
"lint:lib-fix": "ng lint @talentia/angular-tree-component --fix",
"lint:app-fix": "ng lint demo --fix",
"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",
"mobx": "4.14.1",
"rxjs": "7.8.1",
"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",
"angular-eslint": "20.7.0",
"copyfiles": "2.4.1",
"eslint": "9.39.1",
"mkdirp": "3.0.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",
"uuid": "13.0.0",
"wait-on": "9.0.1"
}
}