-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.31 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.31 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "angular-app",
"version": "0.0.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jojanper/angular-app.git"
},
"bugs": {
"url": "https://github.com/jojanper/angular-app/issues"
},
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build --prod --delete-output-path=false",
"prod-watch": "ng build --prod --watch=true --delete-output-path=false",
"dev-watch": "ng build --watch=true",
"test": "ng test --watch=false",
"test-coverage": "ng test --watch=false --code-coverage",
"test-watch": "ng test --watch=true --single-run=false",
"lint": "ng lint",
"e2e": "ng e2e",
"cibuild-travis": "npm run lint && npm test -- --environment=travis",
"clean": "rimraf node_modules dist && npm cache clean",
"clean-install": "npm run clean && npm install",
"clean-start": "npm run clean-install && npm start",
"sloc": "sloc src",
"http-server": "http-server",
"serve-build": "npm run http-server -- dist --p 4200",
"gh-pages": "rm -Rf dist && mkdir -p dist && npm run gh-pages-build && npm run gh-pages-deploy",
"gh-pages-build": "npm run build -- --deploy-url /angular-app/ --base-href /angular-app/",
"gh-pages-deploy": "cd dist && git init && git add -A && git commit -m \"deploy\" && git push -f git@github.com:jojanper/angular-app.git master:gh-pages"
},
"private": true,
"dependencies": {
"@angular/cdk": "^8.2.3",
"@angular/common": "^8.2.14",
"@angular/compiler": "^8.2.14",
"@angular/core": "^8.2.14",
"@angular/forms": "^8.2.14",
"@angular/platform-browser": "^8.2.14",
"@angular/platform-browser-dynamic": "^8.2.14",
"@angular/router": "^8.2.14",
"@ng-bootstrap/ng-bootstrap": "^4.0.0",
"@ngrx/effects": "^8.6.0",
"@ngrx/router-store": "^8.6.0",
"@ngrx/store": "^8.6.0",
"@nguniversal/express-engine": "^8.2.6",
"chosen-js": "1.8.3",
"core-js": "^2.6.11",
"datatables.net": "^1.10.20",
"datatables.net-bs": "^1.10.20",
"jquery": "^3.3.1",
"ngx-cookie": "^4.0.0",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.5.4",
"simple-peer": "^9.6.2",
"socket.io": "~2.1.1",
"vorlon": "git+https://github.com/jojanper/vorlon.git",
"xterm": "^3.14.2",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.800.0",
"@angular/cli": "^8.3.25",
"@angular/compiler-cli": "^8.2.14",
"@angular/language-service": "^8.2.14",
"@types/chosen-js": "^1.8.0",
"@types/jasmine": "^3.5.8",
"@types/jasminewd2": "^2.0.8",
"@types/jquery": "^3.3.33",
"@types/node": "^13.7.7",
"@types/socket.io-client": "~1.4.32",
"@types/xterm": "^3.0.0",
"codecov": "^3.6.5",
"codelyzer": "^5.2.1",
"cors": "^2.8.5",
"express": "^4.16.4",
"http-server": "latest",
"jasmine-core": "^3.1.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "^4.4.1",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "^2.1.1",
"karma-jasmine": "^3.1.1",
"karma-mocha-reporter": "^2.2.5",
"protractor": "^5.4.3",
"rimraf": "^3.0.2",
"serve-static-throttle": "^3.0.2",
"shelljs": "^0.8.2",
"sloc": "^0.2.0",
"ts-node": "~4.1.0",
"tslint": "^5.20.1",
"typescript": "~3.4.5"
},
"engines": {
"node": ">= 8.4.0"
}
}