-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 3.09 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 3.09 KB
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
{
"name": "ngx-template-streams-app",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"postinstall": "ngcc --properties es2015 browser module main --first-only --create-ivy-entry-points",
"start": "ng serve",
"clean": "rimraf dist",
"build:app": "ng build app",
"build": "npm run clean && npm run build:lib && npm run build:internal && npm run build:schematics && npm run copy",
"build:lib": "ng build ngx-template-streams",
"build:internal": "tsc -p projects/ngx-template-streams/tsconfig.internal.json",
"build:schematics": "tsc -p projects/ngx-template-streams/schematics/tsconfig.json",
"copy": "npm run copy:readme && npm run copy:webpack && npm run copy:schematics",
"copy:readme": "cpx README.md dist/ngx-template-streams",
"copy:webpack": "cpx \"projects/ngx-template-streams/webpack/**\" dist/ngx-template-streams/webpack",
"copy:schematics": "cpx \"projects/ngx-template-streams/schematics/**/{collection.json,schema.json,files/**}\" dist/ngx-template-streams/schematics",
"format:base": "prettier \"{src,projects}/**/*{.ts,.js,.json}\"",
"format:check": "npm run format:base -- --list-different",
"format:fix": "npm run format:base -- --write",
"style": "npm run lint:check && npm run format:check",
"style:fix": "npm run lint:fix && npm run format:fix",
"lint:check": "ng lint",
"lint:fix": "ng lint app --fix && ng lint ngx-template-streams --fix",
"test": "jest -c jest.config.js",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js -c jest.config.js --runInBand",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"jest": {
"preset": "jest-preset-angular",
"setupTestFrameworkScriptFile": "<rootDir>/projects/ngx-template-streams/test.ts"
},
"dependencies": {
"@angular/animations": "~9.0.0-rc.0",
"@angular/common": "~9.0.0-rc.0",
"@angular/compiler": "~9.0.0-rc.0",
"@angular/core": "~9.0.0-rc.0",
"@angular/forms": "~9.0.0-rc.0",
"@angular/platform-browser": "~9.0.0-rc.0",
"@angular/platform-browser-dynamic": "~9.0.0-rc.0",
"@angular/router": "~9.0.0-rc.0",
"@phenomnomnominal/tsquery": "^3.0.0",
"fp-ts": "^1.19.2",
"rxjs": "~6.4.0",
"tslib": "^1.9.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.800.0",
"@angular-devkit/build-ng-packagr": "~0.800.0",
"@angular/cli": "~8.0.3",
"@angular/compiler-cli": "~9.0.0-rc.0",
"@angular/language-service": "~9.0.0-rc.0",
"@testing-library/angular": "^7.1.0",
"@types/jest": "^24.0.15",
"@types/memory-fs": "^0.3.2",
"@types/node": "^12.0.10",
"@types/rimraf": "^2.0.2",
"@types/webpack": "^4.4.34",
"codelyzer": "^5.0.0",
"cpx": "^1.5.0",
"jest": "^24.8.0",
"jest-preset-angular": "^7.1.1",
"memfs": "^2.15.4",
"memory-fs": "^0.4.1",
"ng-packagr": "^5.1.0",
"prettier": "^1.18.2",
"protractor": "~5.4.0",
"rimraf": "^2.6.3",
"ts-loader": "^6.0.4",
"ts-node": "~7.0.0",
"tsickle": "^0.35.0",
"tslint": "~5.15.0",
"typescript": "~3.6.4",
"webpack-cli": "^3.3.5"
}
}