-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.88 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
58
{
"name": "ng-gantt",
"version": "0.0.0",
"private": true,
"license": "MIT",
"scripts": {
"start": "ng serve",
"build": "npm run copy && ng build dev",
"copy": "cp -R dist/ng-gantt src/ng-gantt",
"build:app": "npm run copy && ng build --project packages && rimraf src/ng-gantt",
"build:lib": "rimraf dist && ng-packagr -p ng-gantt/ng-package.json",
"publish-npm": "npm run build:lib && cd dist/ng-gantt && npm publish",
"reload": "npm run build:lib && npm run build && npm run start",
"dev": "cd dist/app && http-server",
"test": "ng test dev --watch=false",
"unittest": "ng test",
"lint": "ng lint",
"kill": "kill -9 $(lsof -t -i:4200)",
"reinstall": "rm package-lock.json && rm -rf node_modules && npm i",
"sass:rebuild": "npm rebuild node-sass"
},
"dependencies": {
"@angular/common": "19.2.18",
"@angular/compiler": "19.2.18",
"@angular/core": "20.3.25",
"@angular/forms": "19.2.18",
"@angular/platform-browser": "19.2.18",
"@angular/platform-browser-dynamic": "19.2.18",
"@angular/router": "19.2.18",
"rxjs": "^7.4.0",
"zone.js": "~0.16.0",
"jsgantt-improved": "*"
},
"devDependencies": {
"@angular-devkit/build-angular": "~19.2.24",
"@angular-devkit/schematics": "~19.2.24",
"@angular/cli": "~19.2.24",
"@angular/compiler-cli": "19.2.18",
"@angular/language-service": "19.2.18",
"@types/jasmine": "~4.3.0",
"@types/node": "^18.0.0",
"cpr": "^3.0.0",
"jasmine": "^4.0.0",
"jasmine-core": "^4.0.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-cli": "~2.0.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"ng-packagr": "~19.2.2",
"rimraf": "^5.0.0",
"ts-node": "~10.9.0",
"tslib": "^2.3.0",
"typescript": "~5.7.0"
}
}