This repository has been archived by the owner on Apr 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.51 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
{
"name": "typeorm-service",
"version": "0.0.1",
"description": "Test service for messing around with typeorm",
"license": "Apache-2.0",
"type": "commonjs",
"author": "Jeff Kennedy",
"main": "dist/main.js",
"types": "main.d.ts",
"files": [
"*"
],
"scripts": {
"build": "rm -rf dist && tsc",
"start": "ts-node src/main.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typeorm": "node --require ts-node/register ./node_modules/typeorm/cli.js",
"typeorm:migration": "node --require ts-node/register ./node_modules/typeorm/cli.js migration:create -d src/db/migration -n",
"test": "echo 'TODO: unit tests'",
"integration": "echo 'TODO: integration tests'",
"healthcheck": "echo 'TODO: copy healthcheck to here'"
},
"dependencies": {
"@nestjs/common": "^7.6.6",
"@nestjs/core": "^7.6.6",
"@nestjs/platform-express": "^7.6.6",
"@nestjs/typeorm": "^7.1.5",
"@types/node": "^14.14.22",
"express-jwt": "^6.0.0",
"pg": "^8.5.1",
"protocol-common": "^0.1.38",
"rxjs": "^6.6.3",
"typeorm": "^0.2.30",
"typescript": "^4.1.3"
},
"devDependencies": {
"@nestjs/testing": "^7.6.6",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/eslint-plugin-tslint": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^8.12.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsdoc": "^38.1.6",
"eslint-plugin-prefer-arrow": "^1.2.3",
"prettier": "^2.2.1",
"ts-node": "^9.1.1"
}
}