-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.87 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"watch": "tsc -w",
"dev": "nodemon dist/index.js",
"start": "node dist/index.js",
"build":"tsc",
"test": "jest",
"dev-test": "cross-env TEST_DB=testgignal node dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/connect-redis": "^0.0.16",
"@types/cors": "^2.8.9",
"@types/express": "^4.17.11",
"@types/express-session": "^1.17.3",
"@types/formidable": "^1.0.32",
"@types/graphql-upload": "^8.0.4",
"@types/ioredis": "^4.19.4",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.27",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"axios": "^0.21.1",
"babel-jest": "^26.6.3",
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"ts-jest": "^26.5.3",
"typescript": "^4.1.5",
"xmlhttprequest": "^1.8.0"
},
"dependencies": {
"@google-cloud/storage": "^5.8.1",
"apollo-server-express": "2.19.1",
"argon2": "^0.27.1",
"cloudinary": "^1.25.0",
"connect-redis": "^5.1.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dataloader": "^2.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"firebase-admin": "^9.5.0",
"formidable": "^1.2.2",
"graphql": "^15.5.0",
"graphql-redis-subscriptions": "^2.3.1",
"graphql-subscriptions": "^1.2.0",
"graphql-upload": "^11.0.0",
"ioredis": "^4.22.0",
"pg": "^8.5.1",
"reflect-metadata": "^0.1.13",
"subscriptions-transport-ws": "^0.9.18",
"type-graphql": "^1.1.1",
"typeorm": "^0.2.31",
"uuid": "^8.3.2"
}
}