forked from jsGanttImproved/ng-gantt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.89 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
{
"name": "ng-gantt",
"version": "1.0.0",
"private": true,
"license": "MIT",
"scripts": {
"start": "ng serve",
"build": "ng build && npm run copy",
"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/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 && npm run e2e",
"unittest": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"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": "15.2.9",
"@angular/compiler": "15.2.9",
"@angular/core": "15.2.9",
"@angular/forms": "15.2.9",
"@angular/platform-browser": "15.2.9",
"@angular/platform-browser-dynamic": "15.2.9",
"@angular/router": "15.2.9",
"core-js": "^3.6.4",
"jsgantt-improved": "*",
"rxjs": "*",
"webpack": "*",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~15.2.9",
"@angular-devkit/schematics": "^15.2.9",
"@angular/cli": "^15.2.9",
"@angular/compiler-cli": "15.2.9",
"@angular/language-service": "15.2.9",
"@types/jasmine": "~3.6.0",
"@types/node": "^13.7.1",
"awesome-typescript-loader": "^2.2.1",
"codelyzer": "^6.0.0",
"cpr": "^3.0.0",
"jasmine": "^4.6.0",
"jasmine-core": "~4.6.0",
"jasmine-spec-reporter": "~5.0.0",
"ng-packagr": "^15.2.2",
"protractor": "~7.0.0",
"rimraf": "^2.7.1",
"rollup": "0.67.4",
"ts-node": "~10.9.1",
"tslib": "^2.6.2",
"tslint": "~6.1.3",
"typescript": "4.9.5"
}
}