-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
68 lines (68 loc) · 2.14 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
61
62
63
64
65
66
67
68
{
"name": "ng-gantt",
"version": "0.0.0",
"private": true,
"license": "MIT",
"scripts": {
"start": "ng serve",
"build": "npm run copy && ng build",
"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": "10.0.8",
"@angular/compiler": "10.0.8",
"@angular/core": "10.0.8",
"@angular/forms": "10.0.8",
"@angular/http": "*",
"@angular/platform-browser": "10.0.8",
"@angular/platform-browser-dynamic": "10.0.8",
"@angular/router": "10.0.8",
"core-js": "^3.6.4",
"rxjs": "*",
"webpack": "*",
"zone.js": "^0.10.3",
"jsgantt-improved": "*"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.900.2",
"@angular-devkit/schematics": "^9.0.2",
"@angular/cli": "10.0.5",
"@angular/compiler-cli": "10.0.8",
"@angular/language-service": "10.0.8",
"@types/jasmine": "3.3.8",
"@types/node": "^13.7.1",
"codelyzer": "~5.0.0",
"cpr": "^3.0.0",
"jasmine": "^3.3.0",
"jasmine-core": "^3.3.0",
"jasmine-spec-reporter": "^4.2.1",
"karma": "~4.1.0",
"karma-chrome-launcher": "~2.2.0",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^2.0.0",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.0",
"ng-packagr": "^9.0.0",
"protractor": "~5.4.0",
"rimraf": "^2.7.1",
"ts-node": "~7.0.0",
"tsickle": "^0.29.0",
"tslib": "^1.9.0",
"tslint": "~6.1.3",
"typescript": "3.9.7",
"awesome-typescript-loader": "^2.2.1",
"rollup": "0.67.4"
}
}