-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.5 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
{
"name": "ingsys",
"version": "1.0.0",
"description": "TBD",
"main": "src/main.ts",
"scripts": {
"dev": "ts-node .",
"dev:loop": "nodemon --config dev.nodemon.json",
"test": "jest",
"test:loop": "nodemon --config tdd.nodemon.json",
"lint": "tslint src/**/*.ts && echo 'All good!'",
"prettify": "prettier --write src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lgcavalheiro/INGSYS.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/lgcavalheiro/INGSYS/issues"
},
"homepage": "https://github.com/lgcavalheiro/INGSYS#readme",
"dependencies": {
"class-validator": "^0.14.0",
"dotenv": "^16.0.3",
"graphql": "^15.3.0",
"graphql-helix": "^1.13.0",
"koa": "^2.14.1",
"koa-bodyparser": "^4.3.0",
"koa-router": "^12.0.0",
"pg": "^8.8.0",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.1.1",
"typeorm": "^0.3.11"
},
"packageManager": "[email protected]",
"devDependencies": {
"@jest/globals": "^29.3.1",
"@types/graphql": "^14.5.0",
"@types/koa": "^2.13.5",
"@types/koa-router": "^7.4.4",
"@types/supertest": "^2.0.12",
"husky": "^8.0.3",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"prettier": "^2.8.2",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.9.4"
}
}