-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.08 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
{
"name": "node-project",
"version": "1.0.0",
"description": "",
"main": "main.ts",
"scripts": {
"start:dev": "nodemon src/main.ts --exec ts-node"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"apollo-server-express": "^2.19.2",
"bcryptjs": "^2.4.3",
"class-validator": "^0.13.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "15.3.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"mysql2": "^2.3.2",
"node-cron": "^2.0.3",
"nodemailer": "^6.7.0",
"pg": "^8.5.1",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.1.1",
"typeorm": "^0.2.31"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.11",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^14.14.25",
"@types/node-cron": "^3.0.0",
"@types/nodemailer": "^6.4.4",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
}
}