forked from alcfeoh/ng2-training
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.82 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
69
70
{
"name": "ng-training",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build-prod": "ng build --prod",
"build:elements": "ng build elements --prod && node build-elements.js",
"test": "ng run ng-training:test-ci",
"lint": "ng lint",
"e2e": "ng e2e",
"server": "node node_modules/lp-store-server/solutions/index.js",
"cleanup": "git clean -fd && git reset --hard",
"solution": "node solutions/copyutil.js",
"all-solutions": "node solutions/copyutil.js labC1 && node solutions/copyutil.js labC2 && node solutions/copyutil.js labDB1 && node solutions/copyutil.js labDC1 && node solutions/copyutil.js labDC2 && node solutions/copyutil.js labDC3 && node solutions/copyutil.js labP1 && node solutions/copyutil.js labP2 && node solutions/copyutil.js labS1 && node solutions/copyutil.js labRX1 && node solutions/copyutil.js labHT1 && node solutions/copyutil.js labHT2 && node solutions/copyutil.js labCC1 && node solutions/copyutil.js labCC2 && node solutions/copyutil.js labR1 && node solutions/copyutil.js labR2 && node solutions/copyutil.js lab18 && node solutions/copyutil.js labF1 && node solutions/copyutil.js labT1 && node solutions/copyutil.js labT2",
"compodoc": "./node_modules/.bin/compodoc -p src/tsconfig.app.json"
},
"private": true,
"dependencies": {
"@angular/cdk": "^7.3.7",
"@angular/common": "^8.0.0",
"@angular/compiler": "^8.0.0",
"@angular/core": "^8.0.0",
"@angular/elements": "^8.0.0",
"@angular/forms": "^8.0.0",
"@angular/http": "^7.2.15",
"@angular/platform-browser": "^8.0.0",
"@angular/platform-browser-dynamic": "^8.0.0",
"@angular/router": "^8.0.0",
"bootstrap": "^4.3.1",
"core-js": "^2.6.9",
"document-register-element": "1.8.1",
"lp-store-server": "^2.1.1",
"rxjs": "6.5.2",
"zone.js": "^0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.800.2",
"@angular-devkit/build-ng-packagr": "^0.800.2",
"@angular/cli": "^8.0.2",
"@angular/compiler-cli": "^8.0.0",
"@compodoc/compodoc": "^1.1.9",
"@types/jasmine": "2.5.38",
"@types/jasminewd2": "^2.0.6",
"@types/node": "^6.14.6",
"codelyzer": "^4.5.0",
"concat": "^1.0.3",
"copyfiles": "^2.1.0",
"fs-extra": "^7.0.1",
"jasmine-core": "~2.5.2",
"jasmine-spec-reporter": "~3.2.0",
"karma": "~1.4.1",
"karma-chrome-launcher": "~2.0.0",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^0.2.0",
"karma-jasmine": "^1.1.2",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-phantomjs-launcher": "^1.0.4",
"ng-packagr": "^5.3.0",
"nodejs-websocket": "^1.7.2",
"protractor": "^5.4.2",
"ts-node": "3.3.0",
"tsickle": "^0.33.1",
"tslib": "^1.10.0",
"tslint": "~4.5.0",
"typescript": "3.4.5"
}
}