-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.74 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.74 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
49
50
51
52
53
54
55
56
57
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "main.ts",
"scripts": {
"start": "dotenv --e .env.production -- nodemon --exec ts-node src/main.ts",
"start-dev": "dotenv --e .env.production -- nodemon --exec ts-node src/main.ts",
"dev": "nodemon --exec ts-node src/main.ts",
"dev1": "node dist/main.js",
"watch": "tsc -w",
"typeorm": "ts-node ./node_modules/typeorm/cli.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/node": "^18.11.9",
"apollo-server-core": "^3.11.1",
"apollo-server-express": "^3.10.4",
"argon2": "^0.30.2",
"chalk": "4.1.2",
"class-validator": "^0.13.2",
"connect-mongo": "^4.6.0",
"cors": "^2.8.5",
"dataloader": "^2.1.0",
"dotenv": "^16.0.3",
"dotenv-cli": "^6.0.0",
"express": "^4.18.2",
"express-session": "^1.17.3",
"fs": "^0.0.1-security",
"graphql": "15.3.0",
"http": "^0.0.1-security",
"http-status-codes": "^2.2.0",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^3.1.2",
"mongoose": "6.6.0",
"nodemailer": "^6.8.0",
"nodemon": "^2.0.20",
"path": "^0.12.7",
"pg": "^8.8.0",
"reflect-metadata": "^0.1.13",
"ts-node": "^10.9.1",
"tsyringe": "^4.7.0",
"type-graphql": "^1.1.1",
"typedi": "^0.10.0",
"typeorm": "^0.3.10",
"typescript": "4.8.4",
"uuid": "^9.0.0"
},
"devDependencies": {
"@typegoose/typegoose": "^9.12.1",
"@types/express": "^4.17.14",
"@types/express-session": "^1.17.5",
"@types/nodemailer": "^6.4.6"
}
}