-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.63 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
{
"name": "reddit-be",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "ts-node src/index.ts",
"start-ts": "ts-node index.ts",
"watch": "tsc -w",
"server-ts": "nodemon --exec ts-node src/index.ts",
"server": "nodemon dist/index.js",
"dev": "tsc-watch --synchronousWatchDirectory --onSuccess \"yarn start\"",
"build": "rm -rf dist && tsc"
},
"repository": "https://github.com/LQT1102/reddit-BE.git",
"author": "lqtuan <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/node": "^16.11.10",
"@types/nodemailer": "^6.4.4",
"@types/uuid": "^8.3.4",
"@types/validator": "^13.7.3",
"nodemon": "^2.0.16",
"ts-node": "10.7.0",
"tsc-watch": "^5.0.3",
"typescript": "4.5.2",
"@typegoose/typegoose": "^9.9.0"
},
"dependencies": {
"apollo-server-core": "^3.9.0",
"apollo-server-express": "^3.9.0",
"argon2": "^0.28.2",
"class-validator": "^0.13.2",
"connect-mongo": "^4.6.0",
"cors": "^2.8.5",
"dataloader": "^2.1.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-session": "^1.17.3",
"graphql": "^15.5.1",
"mongoose": "^6.4.0",
"nodemailer": "^6.6.3",
"pg": "^8.4.0",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.1.1",
"typeorm": "^0.3.7",
"uuid": "^8.3.2"
}
}