-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.18 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
{
"name": "nodeql",
"version": "2.0.0",
"main": "index.js",
"license": "GPLv3",
"scripts": {
"build": "tsc",
"dev:start": "ts-node-dev -r tsconfig-paths/register --transpile-only --ignore-watch node_modules ./src/shared/infra/http/server.ts",
"test": "jest"
},
"dependencies": {
"@types/express": "^4.17.7",
"apollo-server-express": "^2.16.0",
"date-fns": "^2.15.0",
"express": "^4.17.1",
"graphql": "^15.3.0",
"nodemailer": "^6.4.10",
"reflect-metadata": "^0.1.13",
"sqlite3": "^5.0.0",
"type-graphql": "^1.0.0-rc.3",
"typeorm": "^0.2.25"
},
"devDependencies": {
"@types/jest": "^26.0.5",
"@types/nodemailer": "^6.4.0",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.1.0",
"prettier": "^2.0.5",
"ts-jest": "^26.1.3",
"ts-node-dev": "^1.0.0-pre.51",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.9.6"
}
}