-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
61 lines (61 loc) · 2.21 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
{
"name": "@angular-skyhook/monorepo",
"private": true,
"version": "0.0.0",
"devDependencies": {
"@angular/cli": "^8.0.0",
"@angular/common": "^8.0.0",
"@angular/compiler": "^8.0.0",
"@angular/compiler-cli": "^8.0.0",
"@angular/core": "^8.0.0",
"@angular/platform-browser": "^8.0.0",
"@angular/platform-browser-dynamic": "^8.0.0",
"@compodoc/compodoc": "^1.1.9",
"@types/fs-extra": "^8.0.0",
"@types/jest": "^24.0.6",
"@types/lodash": "^4.14.87",
"@types/node": "~12.7.11",
"chokidar-cli": "^2.0.0",
"codelyzer": "^5.0.0",
"core-js": "^3.0.0",
"cross-env": "^6.0.3",
"fs-extra": "^8.0.1",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~4.2.1",
"jest": "^24.1.0",
"jest-localstorage-mock": "^2.2.0",
"jest-preset-angular": "^7.0.0",
"lerna": "^3.2.1",
"lodash": "^4.17.4",
"mermaid.cli": "^0.5.1",
"ng-packagr": "^5.0.0",
"protractor": "~6.0.0",
"rimraf": "^3.0.0",
"rxjs": "^6.3.0",
"scss-bundle": "^3.0.1",
"ts-node": "~8.0.2",
"tsickle": "^0.36.0",
"tslib": "^1.9.0",
"tslint": "~5.17.0",
"typescript": ">=3.4 <3.5",
"zone.js": "~0.9.1"
},
"scripts": {
"lerna": "lerna",
"build": "lerna exec node ../../tools/tasks/build && lerna exec cp ../../README.md dist/README.md",
"watch": "cross-env WATCH_MODE=true lerna exec --parallel node ../../tools/tasks/build",
"build-tools": "tsc -p ./tools/tsconfig.json",
"clean-all": "lerna clean && rimraf packages/*/dist",
"clean": "rimraf packages/*/dist",
"test": "jest",
"test-tdd": "jest --watchAll --no-cache",
"test-debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --no-cache --runInBand",
"release": "yarn lerna version && yarn build && yarn lerna publish from-git",
"postinstall": "yarn build-tools",
"lint": "tslint packages/**/*.ts -t verbose",
"aio": "compodoc -p ./tsconfig.json --output ./aio --hideGenerator --silent"
},
"workspaces": [
"packages/*"
]
}