-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.79 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.79 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
80
81
82
83
84
85
86
87
{
"name": "ts-configurable",
"version": "2.1.0",
"license": "MIT",
"author": "Benjamin Assadsolimani (derbenoo)",
"description": "Make all properties of a class configurable using only one decorator!",
"keywords": [
"config",
"settings",
"configuration",
"decorator",
"dotenv",
"argument",
"parser",
"environment",
"variables",
"args",
"argv",
"env"
],
"repository": {
"type": "git",
"url": "[email protected]:derbenoo/ts-configurable.git"
},
"bugs": {
"url": "https://github.com/derbenoo/ts-configurable/issues"
},
"homepage": "https://github.com/derbenoo/ts-configurable",
"scripts": {
"cleanup": "rm -r dist/ || true ; rm -r coverage/ || true ; rm -r test-results/ || true",
"start": "ng serve example-webserver",
"build": "ng build ts-configurable",
"pack:lib": "rm -r dist/libs/ts-configurable || true && tsc --build libs/ts-configurable/tsconfig.lib.json && npm run copy-files",
"test": "ng test --passWithNoTests",
"lint": "./node_modules/.bin/nx workspace-lint && ng lint",
"format": "./node_modules/.bin/nx format:write",
"format:write": "./node_modules/.bin/nx format:write",
"format:check": "./node_modules/.bin/nx format:check",
"update": "ng update @nrwl/workspace",
"update:check": "ng update",
"copy-readme": "cp README.md dist/libs/ts-configurable/src",
"copy-license": "cp LICENSE dist/libs/ts-configurable/src",
"copy-changelog": "cp CHANGELOG.md dist/libs/ts-configurable/src",
"copy-package-json": "cp libs/ts-configurable/package.json dist/libs/ts-configurable/src",
"copy-files": "run-s copy-readme copy-license copy-changelog copy-package-json",
"nx": "nx"
},
"dependencies": {
"@nestjs/common": "^7.0.1",
"@nestjs/core": "^7.0.1",
"@nestjs/platform-express": "^7.0.1",
"@nestjs/typeorm": "^7.0.0",
"dotenv": "^8.2.0",
"nconf": "^0.10.0",
"reflect-metadata": "^0.1.13",
"sqlite3": "^4.0.6",
"typeorm": "^0.2.24"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.900.6",
"@angular-devkit/build-ng-packagr": "~0.900.6",
"@angular/cli": "~9.0.6",
"@angular/compiler-cli": "~9.0.6",
"@nestjs/schematics": "^7.0.0",
"@nestjs/testing": "^7.0.1",
"@nrwl/jest": "9.1.2",
"@nrwl/nest": "9.1.2",
"@nrwl/node": "9.1.2",
"@nrwl/workspace": "9.1.2",
"@types/dotenv": "~8.2.0",
"@types/jest": "24.0.11",
"@types/nconf": "~0.10.0",
"@types/node": "^13.9.1",
"codelyzer": "~5.2.1",
"jest": "24.5.0",
"jest-junit": "~6.3.0",
"ng-packagr": "~5.7.1",
"prettier": "1.19.1",
"ts-jest": "24.0.0",
"ts-node": "~8.1.0",
"tsickle": "~0.38.1",
"tslib": "~1.11.1",
"tslint": "6.0.0",
"tslint-no-focused-test": "~0.5.0",
"typescript": "~3.7.4"
}
}