forked from just-jeb/angular-builders
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.05 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
{
"name": "angular-builders",
"description": "A consolidation of community builders for Angular build facade",
"repository": {
"type": "git",
"url": "https://github.com/meltedspark/angular-builders"
},
"private": true,
"author": "Evgeny Barabanov",
"license": "MIT",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"postbuild": "yarn test && yarn run e2e",
"build": "tsc && ts-node merge-schemes.ts",
"test": "jest src",
"e2e": "jest e2e"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.803.0",
"@angular/compiler": "^8.2.2",
"@angular/compiler-cli": "^8.2.2",
"@types/jest": "^24.0.0",
"@types/lodash": "^4.14.118",
"@types/node": "~12.7.2",
"@types/webpack": "^4.4.26",
"@types/webpack-dev-server": "^3.1.5",
"@types/webpack-merge": "^4.1.3",
"cpy-cli": "^2.0.0",
"jest": "^24.7.1",
"lerna": "^3.13.4",
"lodash": "^4.17.11",
"quicktype": "^15.0.174",
"rimraf": "^3.0.0",
"ts-jest": "^24.0.0",
"ts-node": "~8.1.1",
"typescript": "3.5"
}
}