-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
81 lines (81 loc) · 2.69 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
71
72
73
74
75
76
77
78
79
80
81
{
"name": "made-with-love-workspace",
"version": "2.0.6",
"license": "MIT",
"author": "Nitay Neeman",
"homepage": "https://github.com/nitayneeman/made-with-love",
"repository": {
"type": "git",
"url": "https://github.com/nitayneeman/made-with-love.git"
},
"scripts": {
"ng": "ng",
"start": "ng run made-with-love-workspace:serve",
"build": "ng run made-with-love-workspace:build",
"test": "ng run made-with-love-workspace:test",
"lint": "ng run made-with-love-workspace:lint",
"format": "prettier --write '**/*.ts' '**/*.json'",
"format:staged": "pretty-quick --staged",
"precommit": "run-s format:staged lint",
"build-package": "npm run lib:build:prod && npm run schematics:copy",
"lib:build": "ng run made-with-love:build",
"lib:build:prod": "ng run made-with-love:build:production",
"lib:test": "ng run made-with-love:test",
"lib:lint": "ng run made-with-love:lint",
"schematics:build": "tsc -p projects/schematics/tsconfig.json",
"schematics:copy": "npm run schematics:build && webpack"
},
"private": true,
"dependencies": {
"@angular/animations": "6.1.7",
"@angular/common": "6.1.7",
"@angular/compiler": "6.1.7",
"@angular/core": "6.1.7",
"@angular/elements": "6.1.7",
"@angular/forms": "6.1.7",
"@angular/http": "6.1.7",
"@angular/platform-browser": "6.1.7",
"@angular/platform-browser-dynamic": "6.1.7",
"@angular/router": "6.1.7",
"@webcomponents/custom-elements": "^1.2.0",
"core-js": "^2.5.7",
"rxjs": "^6.2.2",
"zone.js": "^0.8.24"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.5.13",
"@angular-devkit/build-ng-packagr": "~0.6.8",
"@angular-devkit/core": "^0.7.5",
"@angular-devkit/schematics": "^0.7.5",
"@angular/cli": "6.2.1",
"@angular/compiler-cli": "^6.1.7",
"@angular/language-service": "6.1.7",
"@types/jasmine": "^2.8.8",
"@types/jasminewd2": "~2.0.3",
"@types/node": "~8.9.4",
"codelyzer": "~4.2.1",
"copy-webpack-plugin": "^4.5.2",
"husky": "^0.14.3",
"jasmine-core": "~2.99.1",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~1.7.1",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "^1.4.3",
"karma-jasmine": "^1.1.2",
"karma-jasmine-html-reporter": "^0.2.2",
"ng-packagr": "^3.0.6",
"npm-run-all": "^4.1.3",
"prettier": "^1.14.2",
"pretty-quick": "^1.6.0",
"protractor": "^5.3.2",
"schematics-utilities": "^2.0.0",
"ts-node": "~5.0.1",
"tsickle": "^0.32.1",
"tslib": "^1.9.3",
"tslint": "~5.9.1",
"typescript": "~2.9.2",
"webpack": "^4.18.0",
"webpack-cli": "^3.1.2",
"webpack-node-externals": "^1.7.2"
}
}