-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.48 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
{
"name": "contacts",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"start": "ts-node src/index.ts",
"start:watch": "nodemon src/index.ts",
"dev:init": "yarn dev:down && yarn dev:up",
"dev:up": "docker-compose up -d",
"dev:down": "docker-compose down",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DittrichLucas/contacts.git"
},
"author": "Lucas Dittrich",
"license": "MIT",
"bugs": {
"url": "https://github.com/DittrichLucas/contacts/issues"
},
"homepage": "https://github.com/DittrichLucas/contacts#readme",
"dependencies": {
"apollo-server": "2.21.0",
"bluebird": "3.7.2",
"class-validator": "0.13.1",
"graphql-tools": "7.0.3",
"ioredis": "4.22.0",
"pg": "8.5.1",
"ramda": "0.27.1",
"reflect-metadata": "0.1.13",
"ts-node": "9.1.1",
"type-graphql": "1.1.1",
"typedi": "0.8.0",
"typeorm": "0.2.31",
"typeorm-typedi-extensions": "0.4.0",
"uuid": "8.3.2",
"winston": "3.3.3"
},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@types/bluebird": "3.5.33",
"@types/ioredis": "4.19.4",
"@types/node": "14.14.27",
"@types/pg": "7.14.9",
"@types/ramda": "0.27.38",
"@types/uuid": "8.3.0",
"@typescript-eslint/eslint-plugin": "4.15.0",
"@typescript-eslint/parser": "4.15.0",
"class-transformer": "0.4.0",
"commitizen": "4.2.3",
"cz-conventional-changelog": "3.3.0",
"eslint": "7.19.0",
"graphql": "15.3.0",
"hooks": "0.3.2",
"husky": "4.2.3",
"jest": "26.6.3",
"lint-staged": "10.5.4",
"nodemon": "2.0.7",
"tsconfig-paths": "3.9.0",
"typescript": "4.1.5"
},
"resolutions": {
"graphql-tools": "4.0.8"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.ts": "yarn lint:fix"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}