-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.47 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": "graphql-ts-server",
"version": "1.0.1",
"description": "graphql-ts-server",
"scripts": {
"start": "cross-env NODE_ENV=development nodemon src/index.ts",
"build": "rimraf dist && cross-env NODE_ENV=development tsc",
"test": "cross-env NODE_ENV=test jest --forceExit"
},
"dependencies": {
"@koa/cors": "4.0.0",
"@koa/router": "^10.1.1",
"apollo-server-koa": "3.10.4",
"bcryptjs": "2.4.3",
"class-validator": "0.13.2",
"cross-env": "7.0.3",
"graphql": "15.8.0",
"ioredis": "5.2.3",
"koa": "^2.13.4",
"koa-compress": "^5.1.0",
"koa-jwt": "4.0.3",
"nodemailer": "6.8.0",
"pg": "8.8.0",
"reflect-metadata": "0.1.13",
"type-graphql": "1.1.1",
"typeorm": "0.3.11"
},
"devDependencies": {
"@types/bcryptjs": "2.4.2",
"@types/koa": "^2.13.5",
"@types/koa__cors": "^3.3.0",
"@types/jest": "29.2.1",
"@types/jsonwebtoken": "8.5.8",
"@types/koa__router": "^12.0.0",
"@types/node": "18.7.6",
"@types/nodemailer": "6.4.4",
"axios": "0.27.2",
"jest": "28.1.2",
"nodemon": "^2.0.20",
"prettier": "2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "28.0.8",
"ts-node": "^10.9.1",
"typescript": "4.8.4"
},
"jest": {
"testEnvironment": "node",
"globalSetup": "./src/jest/callSetup.js",
"preset": "ts-jest",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}