-
Notifications
You must be signed in to change notification settings - Fork 85
/
package.json
89 lines (89 loc) · 2.76 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
82
83
84
85
86
87
88
89
{
"name": "platform",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"example-app/@angular-redux/store",
"example-app/@angular-redux/form",
"example-app/@angular-redux/router",
"example-app/ng-packagr"
]
},
"scripts": {
"build": "npm-run-all build:*",
"build:store": "yarn workspace @angular-redux/store build",
"build:form": "yarn workspace @angular-redux/form build",
"build:router": "yarn workspace @angular-redux/router build",
"build:example-app": "yarn workspace example-app build",
"release:canary": "lerna publish --canary --dist-tag canary --npm-client npm",
"release:stable": "lerna version",
"release:stable:ci": "lerna publish from-git",
"clean": "npm-run-all -p clean:*",
"clean:deps": "npm-run-all -p clean:deps:*",
"clean:deps:workspace": "rimraf node_modules",
"clean:deps:packages": "rimraf packages/*/node_modules",
"clean:coverage": "rimraf coverage",
"clean:dist": "rimraf packages/*/dist",
"docs": "docsify serve ./docs",
"lint": "npm-run-all -p lint:*",
"lint:packages": "tslint -p tsconfig.json",
"lint:prettier": "prettier -l \"**/*.*(ts|js|css|scss|json|md)\"",
"test": "jest --coverage",
"test:ci": "jest --coverage --ci --maxWorkers=2",
"test:watch": "jest --watch",
"commit": "commit",
"prettier": "prettier --write \"**/*.*(ts|js|css|scss|json|md)\"",
"run:app": "yarn workspace example-app bootstrap && yarn workspace example-app start"
},
"lint-staged": {
"*.{ts,js,css,scss,json,md}": [
"prettier --write",
"git add"
]
},
"engines": {
"node": ">=8"
},
"devDependencies": {
"@angular/animations": "7.2.1",
"@angular/common": "7.2.1",
"@angular/compiler": "7.2.1",
"@angular/compiler-cli": "7.2.1",
"@angular/core": "7.2.1",
"@angular/forms": "7.2.1",
"@angular/http": "7.2.1",
"@angular/platform-browser": "7.2.1",
"@angular/platform-browser-dynamic": "7.2.1",
"@angular/router": "7.2.1",
"@babel/core": "7.2.2",
"@babel/types": "7.3.0",
"@commitlint/cli": "7.3.2",
"@commitlint/config-conventional": "7.3.1",
"@commitlint/prompt-cli": "7.3.1",
"@types/jest": "23.3.13",
"babel-jest": "23.6.0",
"codelyzer": "4.5.0",
"docsify-cli": "4.3.0",
"husky": "1.3.1",
"jest": "23.6.0",
"jest-junit": "6.0.1",
"jest-preset-angular": "6.0.2",
"jest-zone-patch": "0.0.10",
"lerna": "3.13.4",
"lint-staged": "8.1.0",
"ng-packagr": "4.6.0",
"npm-run-all": "4.1.5",
"prettier": "1.15.3",
"redux": "4.0.1",
"rimraf": "2.6.3",
"rxjs": "6.3.3",
"tsickle": "0.34.0",
"tslib": "1.9.3",
"tslint": "5.12.1",
"typescript": "3.2.4",
"zone.js": "0.8.28"
}
}