-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"watch": "tsc -w",
"node-javascript": "node dist/index.js",
"dev-javascript": "nodemon dist/index.js",
"node-ts": "ts-node src/index.ts",
"dev-ts": "nodemon src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/connect-redis": "^0.0.14",
"@types/cors": "^2.8.9",
"@types/express": "^4.17.9",
"@types/express-session": "^1.17.3",
"@types/node": "^14.14.14",
"@types/nodemailer": "^6.4.0",
"@types/redis": "^2.8.28",
"@types/type-is": "^1.6.3",
"@types/uuid": "^8.3.0",
"nodemon": "^2.0.6",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"apollo-server-express": "^2.19.0",
"argon2": "^0.27.1",
"class-validator": "^0.12.2",
"connect-redis": "^5.0.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-session": "^1.17.1",
"graphql": "^15.4.0",
"ioredis": "^4.19.4",
"nodemailer": "^6.4.17",
"pg": "^8.5.1",
"type-graphql": "^1.1.1",
"typeorm": "^0.2.29",
"uuid": "^8.3.2"
}
}