-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.36 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
{
"name": "type-graphql-server",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"apollo-server-express": "^2.7.0",
"bcryptjs": "^2.4.3",
"class-validator": "^0.9.1",
"connect-redis": "^3.4.1",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-session": "^1.16.2",
"faker": "^4.1.0",
"graphql": "^14.4.2",
"graphql-query-complexity": "^0.3.0",
"ioredis": "^4.11.2",
"nodemailer": "^6.3.0",
"pg": "^7.11.0",
"reflect-metadata": "^0.1.13",
"type-graphql": "^0.17.4",
"typeorm": "^0.2.18",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/connect-redis": "^0.0.10",
"@types/cors": "^2.8.5",
"@types/express": "^4.17.0",
"@types/express-session": "^1.15.13",
"@types/faker": "^4.1.5",
"@types/graphql": "^14.2.2",
"@types/ioredis": "^4.0.13",
"@types/jest": "^24.0.15",
"@types/node": "^12.6.6",
"@types/nodemailer": "^6.2.0",
"@types/uuid": "^3.4.5",
"jest": "^24.8.0",
"nodemon": "^1.19.1",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"ts-node-dev": "^1.0.0-pre.40",
"typescript": "^3.5.3"
},
"scripts": {
"start": "ts-node-dev --respawn src/index.ts",
"db:setup": "ts-node ./src/test-utils/setup.ts",
"test": "npm run db:setup && jest"
}
}