forked from just-jeb/angular-builders
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.99 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
{
"name": "angular-builders",
"description": "A consolidation of community builders for Angular build facade",
"repository": {
"type": "git",
"url": "https://github.com/just-jeb/angular-builders"
},
"private": true,
"author": "Evgeny Barabanov",
"license": "MIT",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"bootstrap:packages": "npx lerna bootstrap --scope '@angular-builders/*'",
"bootstrap:examples": "npx lerna bootstrap --ignore '@angular-builders/*'",
"build:packages": "npx lerna run build --scope '@angular-builders/*'",
"ci": "yarn build:packages && ./scripts/run-ci.sh",
"lerna": "lerna",
"postbuild": "yarn test && yarn run e2e",
"build": "tsc && ts-node merge-schemes.ts",
"test": "jest src",
"e2e": "jest e2e",
"format": "prettier --write \"**/*.{js,ts,html,md}\"",
"clean": "npx lerna clean"
},
"devDependencies": {
"@angular/compiler": "^9.0.0",
"@angular/compiler-cli": "^9.0.0",
"@commitlint/cli": "^8.3.3",
"@commitlint/config-conventional": "^8.3.3",
"@types/jest": "^25.1.0",
"@types/lodash": "^4.14.118",
"@types/node": "~13.7.0",
"@types/webpack": "^4.4.26",
"@types/webpack-dev-server": "^3.1.5",
"@types/webpack-merge": "^4.1.3",
"cpy-cli": "^3.0.0",
"husky": "^4.0.0",
"jest": "^24.7.1",
"lerna": "^3.18.3",
"lint-staged": "^10.0.0",
"lodash": "^4.17.11",
"prettier": "^1.19.1",
"quicktype": "^15.0.174",
"rimraf": "^3.0.0",
"ts-jest": "^24.0.0",
"ts-node": "~8.6.0",
"typescript": "3.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,ts,html,md}": [
"prettier --write"
]
},
"prettier": {
"semi": true,
"endOfLine": "lf",
"tabWidth": 2,
"printWidth": 100,
"trailingComma": "es5",
"bracketSpacing": true,
"arrowParens": "avoid",
"singleQuote": true
},
"dependencies": {}
}