-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.54 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
{
"name": "@neoskop/nestjs",
"version": "0.2.0",
"description": "Collection of useful NestJS Modules",
"main": "index.js",
"repository": "https://github.com/neoskop/nestjs",
"author": "Mark Wecke <[email protected]>",
"license": "MIT",
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc",
"postbuild": "jq 'del(.scripts) | del(.devDependencies)' package.json > dist/package.json && cp README.md dist",
"publish-next": "npm run build && cd dist && npm publish --tag next",
"publish-latest-only": "npm run build && cd dist && npm publish",
"publish-latest": "npm run publish-latest-only && npm dist-tag add @neoskop/nestjs@`jq '.version' package.json -r` next"
},
"devDependencies": {
"@angular/common": "12",
"@angular/core": "12",
"@angular/platform-server": "12",
"@angular/router": "12",
"@neoskop/adamant": "0.3.0-rc.6",
"@neoskop/annotation-factory": "1.0.1",
"@neoskop/hrbac": "2.0.0-rc.1",
"@neoskop/phantom": "1.3.0",
"@nestjs/common": "8",
"@nestjs/core": "8",
"@nestjs/graphql": "8",
"@nestjs/terminus": "8",
"@types/cookie-parser": "1.4.2",
"@types/express": "4.17.1",
"@types/http-proxy-middleware": "^1.0.0",
"@types/json-schema": "7.0.3",
"@types/node": "12.7.5",
"@types/oauth2-server": "3.0.12",
"@types/pouchdb": "6.4.0",
"@types/simple-oauth2": "2.2.1",
"@types/winston": "2.4.4",
"ajv": "6.10.2",
"cookie-parser": "^1.4.4",
"http-proxy-middleware": "^2.0.0",
"oauth2-server": "3.0.1",
"reflect-metadata": "0.1.13",
"rxjs": "6.5.3",
"simple-oauth2": "2.4.0",
"typescript": "^4.2.4",
"winston": "3.2.1",
"zone.js": "0.10.2"
},
"dependencies": {
"import-fresh": "^3.3.0",
"tslib": "^2.2.0"
},
"peerDependencies": {
"@angular/common": "*",
"@angular/core": "*",
"@angular/platform-server": "*",
"@neoskop/adamant": "*",
"@neoskop/hrbac": ">=2.0.0-rc.1",
"@neoskop/phantom": "*",
"@nestjs/common": "*",
"@nestjs/core": "*",
"@nestjs/graphql": "*",
"@nestjs/terminus": "*",
"ajv": "*",
"cookie-parser": "*",
"http-proxy-middleware": "*",
"oauth2-server": "*",
"reflect-metadata": "*",
"rxjs": "*",
"simple-oauth2": "*",
"winston": "*",
"zone.js": "*"
},
"prettier": {
"trailingComma": "none",
"tabWidth": 4,
"arrowParens": "avoid",
"bracketSpacing": true,
"endOfLine": "lf",
"htmlWhitespaceSensitivity": "css",
"printWidth": 140,
"quoteProps": "as-needed",
"singleQuote": true
}
}