-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 966 Bytes
/
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
{
"name": "social-media-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"watch": "tsc -w",
"dev": "nodemon dist/index.js",
"start": "ts-node src/index.ts",
"start2": "node dist/index.js",
"dev2": "nodemon --exects-node src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^18.11.9",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"dependencies": {
"@types/connect-redis": "^0.0.19",
"@types/express": "^4.17.14",
"@types/express-session": "^1.17.5",
"@types/redis": "^4.0.11",
"apollo-server-express": "^3.11.1",
"argon2": "^0.30.2",
"connect-redis": "^6.1.3",
"express": "^4.18.2",
"express-session": "^1.17.3",
"graphql": "^15.3.0",
"ioredis": "^5.2.4",
"pg": "^8.8.0",
"redis": "^4.5.1",
"type-graphql": "^1.1.1",
"typeorm": "^0.3.10"
}
}