-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.3 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.3 KB
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
{
"name": "twitter-clone-backend",
"version": "1.0.0",
"description": "The backend for a clone of Twitter.",
"main": "index.js",
"repository": "https://github.com/devavi-labs/twitter-clone-backend.git",
"author": "Dev. Avi",
"license": "MIT",
"private": true,
"scripts": {
"watch": "tsc -w",
"start": "node dist/index.js",
"dev": "nodemon dist/index.js",
"dev:con": "concurrently \"tsc -w\" \"nodemon dist/index.js\""
},
"dependencies": {
"apollo-server-express": "^2.19.1",
"argon2": "^0.27.1",
"axios": "^0.21.1",
"cheerio": "^1.0.0-rc.5",
"class-validator": "^0.12.2",
"cors": "^2.8.5",
"dataloader": "^2.0.0",
"express": "^4.17.1",
"get-urls": "^10.0.0",
"graphql": "^15.4.0",
"jsonwebtoken": "^8.5.1",
"node-fetch": "^2.6.1",
"pg": "^8.5.1",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.1.1",
"typeorm": "^0.2.29"
},
"devDependencies": {
"@types/cors": "^2.8.9",
"@types/express": "^4.17.9",
"@types/express-session": "^1.17.3",
"@types/ioredis": "^4.17.10",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^14.14.16",
"@types/nodemailer": "^6.4.0",
"@types/uuid": "^8.3.0",
"dotenv": "^8.2.0",
"nodemon": "^2.0.7",
"open": "^7.3.0",
"typescript": "^4.1.3"
}
}