-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.19 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
{
"name": "server",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"engines": {
"node": ">=14.20.1"
},
"scripts": {
"start": "node ./dist/index.js",
"build": "rm -rf dist && tsc",
"start-ts": "ts-node ./src/index.ts",
"server": "nodemon ./dist/index.js",
"watch": "tsc -w",
"generate": "ts-node ./node_modules/typeorm/cli.js migration:generate -n migration -p"
},
"devDependencies": {
"@types/express-session": "^1.17.7",
"@types/node": "^20.2.5",
"@types/nodemailer": "^6.4.8",
"@types/uuid": "^9.0.2",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"tsconfig.json": "^1.0.11",
"typescript": "^5.1.3"
},
"dependencies": {
"@typegoose/typegoose": "^11.2.0",
"apollo-server-core": "^3.12.0",
"apollo-server-express": "^3.12.0",
"argon2": "^0.30.3",
"class-validator": "^0.14.0",
"connect-mongo": "^5.0.0",
"cors": "^2.8.5",
"dataloader": "^2.2.2",
"dotenv": "^16.1.3",
"express": "^4.18.2",
"express-session": "^1.17.3",
"graphql": "^16.6.0",
"joi": "^17.9.2",
"mongoose": "^7.2.2",
"nodemailer": "^6.9.3",
"pg": "^8.11.0",
"reflect-metadata": "^0.1.13",
"type-graphql": "^2.0.0-beta.2",
"typeorm": "^0.3.16",
"uuid": "^9.0.0"
}
}