-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.29 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "nyererefy",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"scripts": {
"build": "rimraf dist && tsc",
"start": "node dist/server.js",
"serve": "set NODE_ENV=production&& pm2 start dist/server.js --watch -f",
"dev": "ts-node-dev --respawn src/server.ts",
"test": "npm run test-db:setup && jest",
"clean": "npm run test-db:setup",
"test-db:setup": "ts-node ./src/utils/test/testSetup.ts",
"coverage": "jest --coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@google-cloud/storage": "^4.0.1",
"@types/helmet": "^0.0.45",
"apollo-server-express": "^2.9.9",
"axios": "^0.19.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"class-validator": "^0.9.1",
"config": "^3.2.2",
"connect-redis": "^3.4.2",
"cors": "^2.8.5",
"cron": "^1.7.2",
"crypto-random-string": "^3.0.1",
"express": "^4.17.1",
"express-session": "^1.16.2",
"faker": "^4.1.0",
"firebase-admin": "^8.8.0",
"graphql": "^14.5.8",
"graphql-redis-subscriptions": "^2.1.1",
"helmet": "^3.21.2",
"ioredis": "^4.11.2",
"lodash": "^4.17.4",
"moment": "^2.24.0",
"mysql": "^2.17.1",
"nodemailer": "^6.4.1",
"passport": "^0.4.0",
"passport-token-google2": "^0.1.4",
"passport-yahoo-token": "^2.1.0",
"pdfmake": "^0.1.62",
"random-string-generator": "^1.0.0",
"reflect-metadata": "^0.1.13",
"type-graphql": "^0.17.5",
"typeorm": "^0.2.20",
"uuid": "^3.3.3",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.17.0",
"@types/config": "^0.0.34",
"@types/connect-redis": "^0.0.10",
"@types/cors": "^2.8.5",
"@types/cron": "^1.7.1",
"@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/lodash": "^4.14.138",
"@types/node": "^12.6.8",
"@types/nodemailer": "^6.2.2",
"@types/passport": "^1.0.1",
"@types/pdfmake": "^0.1.8",
"@types/uuid": "^3.4.6",
"jest": "^24.8.0",
"rimraf": "^3.0.0",
"ts-jest": "^24.0.2",
"ts-node-dev": "^1.0.0-pre.40",
"typescript": "^3.5.3"
}
}