forked from alan-agius4/ng-mono-repo-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.52 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
{
"name": "@speedy/ng-mono-repo",
"version": "0.0.0",
"private": true,
"scripts": {
"lerna": "lerna",
"bootstrap": "lerna bootstrap",
"build": "lerna exec node ../../tools/tasks/build",
"watch": "cross-env WATCH_MODE=true lerna exec --parallel node ../../tools/tasks/build",
"build-tools": "tsc -p ./tools/tsconfig.json",
"clean": "lerna 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": "node ./tools/tasks/release",
"postinstall": "npm run build-tools & npm run bootstrap",
"aio": "compodoc -p ./tsconfig.json --output ./aio --hideGenerator --silent"
},
"devDependencies": {
"@angular/common": "^7.0.0",
"@angular/compiler": "^7.0.0",
"@angular/compiler-cli": "^7.0.0",
"@angular/core": "^7.0.0",
"@angular/language-service": "^7.0.0",
"@angular/platform-browser": "^7.0.0",
"@angular/platform-browser-dynamic": "^7.0.0",
"@compodoc/compodoc": "^1.1.2",
"@speedy/commit-msg-hook": "^1.8.1",
"@types/fs-extra": "^5.0.0",
"@types/jest": "^23.0.0",
"@types/lodash": "^4.14.87",
"cross-env": "^5.2.0",
"fs-extra": "^7.0.0",
"jest": "^23.0.0",
"jest-localstorage-mock": "^2.1.0",
"jest-preset-angular": "^6.0.0",
"lerna": "3.5.1",
"lodash": "^4.17.4",
"ng-packagr": "^4.0.0",
"rimraf": "^2.6.2",
"rxjs": "^6.0.0",
"scss-bundle": "^2.1.0",
"tslib": "^1.9.0",
"tsickle": "^0.34.0",
"typescript": "~3.2.0",
"zone.js": "^0.8.16"
}
}