-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.41 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
{
"name": "back-end",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "cross-env NODE_ENV=test jest src/**/*.test.* --detectOpenHandles --bail --forceExit --watchAll=false",
"start:dev": "nodemon",
"start": "npm run build && node build/src/index.js",
"build": "rimraf ./build && tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/graphql": "^14.5.0",
"@types/jest": "^28.1.1",
"@types/koa": "^2.13.4",
"@types/koa-router": "^7.4.4",
"@types/node": "^17.0.41",
"@types/supertest": "^2.0.12",
"@types/uuid": "^8.3.4",
"@types/validator": "^13.7.3",
"apollo-server-testing": "^2.19.1",
"chai": "^4.3.6",
"cross-env": "^7.0.3",
"jest": "^28.1.1",
"mocha": "^10.0.0",
"rimraf": "^3.0.2",
"supertest": "^6.2.3",
"ts-jest": "^28.0.4",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
},
"dependencies": {
"apollo-server": "^2.19.1",
"apollo-server-core": "^3.8.2",
"apollo-server-koa": "^3.8.2",
"class-validator": "^0.13.2",
"dotenv": "^16.0.1",
"graphql": "^15.8.0",
"graphql-tools": "^8.2.12",
"knex": "^2.0.0",
"knex-migrate": "^1.7.4",
"knex-tiny-logger": "^2.1.0",
"koa": "^2.13.4",
"koa-router": "^10.1.1",
"pg": "^8.7.3",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.1.1",
"uuid": "^8.3.2"
}
}