forked from cormacrelf/angular-skyhook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.23 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
{
"name": "@angular-skyhook/monorepo",
"private": true,
"version": "0.0.0",
"devDependencies": {
"@angular/cli": "6.0.8",
"@angular/common": "^6.0.9",
"@angular/compiler": "^6.0.9",
"@angular/compiler-cli": "^6.0.9",
"@angular/core": "^6.0.9",
"@angular/language-service": "^6.0.9",
"@angular/platform-browser": "^6.0.9",
"@angular/platform-browser-dynamic": "^6.0.9",
"@compodoc/compodoc": "^1.1.3",
"@types/fs-extra": "^5.0.0",
"@types/jest": "^23.3.0",
"@types/lodash": "^4.14.87",
"@types/node": "~10.9.4",
"chokidar-cli": "^1.2.0",
"codelyzer": "~4.4.2",
"cross-env": "^5.2.0",
"dnd-core": "^4.0.0",
"fs-extra": "^7.0.0",
"jasmine-core": "~3.2.1",
"jasmine-spec-reporter": "~4.2.1",
"jest": "^23.4.1",
"jest-localstorage-mock": "^2.2.0",
"jest-preset-angular": "^6.0.0",
"lerna": "^3.2.1",
"lodash": "^4.17.4",
"mermaid.cli": "^0.5.1",
"ng-packagr": "^4.0.0",
"protractor": "~5.4.0",
"rimraf": "^2.6.2",
"rxjs": "^6.2.0",
"scss-bundle": "^2.1.0",
"ts-node": "~7.0.0",
"tsickle": "^0.32.0",
"tslib": "^1.9.0",
"tslint": "~5.11.0",
"typescript": "~2.9.2",
"zone.js": "^0.8.26"
},
"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 build && node ./tools/tasks/release",
"postinstall": "yarn build-tools",
"lint": "tslint packages/**/*.ts -t verbose",
"aio": "compodoc -p ./tsconfig.json --output ./aio --hideGenerator --silent"
},
"workspaces": [
"packages/*"
]
}