forked from Urigo/WhatsApp-Clone-Server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.66 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
{
"name": "whatsapp-server-express",
"description": "A newly created Tortilla project",
"private": true,
"scripts": {
"generate": "gql-gen",
"generate:watch": "nodemon --exec yarn generate -e graphql",
"start:server": "ts-node index.ts",
"start:server:watch": "nodemon --exec yarn start:server -e ts",
"dev": "concurrently \"yarn generate:watch\" \"yarn start:server:watch\"",
"start": "yarn generate && yarn start:server",
"build": "tsc"
},
"devDependencies": {
"@types/bcrypt-nodejs": "0.0.30",
"@types/body-parser": "1.17.0",
"@types/cors": "2.8.4",
"@types/express": "4.16.1",
"@types/graphql": "14.0.5",
"@types/graphql-iso-date": "3.3.1",
"@types/multer": "1.3.7",
"@types/node": "10.12.24",
"@types/passport": "1.0.0",
"@types/passport-http": "0.3.7",
"@types/pg": "7.4.11",
"@types/tmp": "0.0.33",
"concurrently": "4.1.0",
"graphql-code-generator": "0.16.0",
"graphql-codegen-typescript-common": "0.16.0",
"graphql-codegen-typescript-resolvers": "0.16.0",
"nodemon": "1.18.9",
"ts-node": "8.0.2",
"typescript": "3.2.4"
},
"dependencies": {
"@graphql-modules/core": "0.4.2",
"@graphql-modules/sonar": "0.4.0",
"apollo-server-express": "2.3.3",
"bcrypt-nodejs": "0.0.3",
"body-parser": "1.18.3",
"cloudinary": "1.13.2",
"cors": "2.8.5",
"dotenv": "6.2.0",
"express": "4.16.4",
"graphql": "14.1.1",
"graphql-iso-date": "3.6.1",
"moment": "2.24.0",
"multer": "1.4.1",
"passport": "0.4.0",
"passport-http": "0.3.0",
"pg": "7.8.0",
"reflect-metadata": "0.1.13",
"tmp": "0.0.33",
"typeorm": "0.2.12"
}
}