-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.42 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.42 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
{
"name": "ts-template",
"version": "0.0.0",
"description": "change-me",
"main": "src/main.ts",
"type": "module",
"license": "MIT",
"scripts": {
"d:build:dev": "./docker/build-image-dev.sh",
"d:up:dev": "COMPOSE_DOCKER_CLI_BUILD=1 DOCKER_BUILDKIT=1 docker-compose up --no-log-prefix api | pino-pretty -c",
"build": "rimraf ./dist && tsc -p ./tsconfig.json",
"typeorm": "typeorm-ts-node-esm",
"di:start:watch": "NODE_OPTIONS=\"--loader ts-node/esm --no-warnings\" NODE_ENV=development nodemon ./src/main.ts -w ./src",
"lint": "eslint --fix ./src/**/*.ts"
},
"dependencies": {
"awilix": "^7.0.3",
"bluebird": "^3.7.2",
"pg": "^8.7.3",
"pino": "^8.1.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.7",
"zod": "^3.17.3"
},
"devDependencies": {
"@types/bluebird": "^3.5.36",
"@types/node": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"commitizen": "^4.2.4",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.2.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"git-cz": "^4.9.0",
"nodemon": "^2.0.19",
"pino-pretty": "^8.1.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
},
"config": {
"commitizen": {
"path": "git-cz"
}
}
}