-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.57 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
53
54
55
56
57
{
"name": "server",
"version": "0.0.1",
"description": "Typescript Server",
"type": "commonjs",
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/morgan": "^1.9.9",
"@types/node": "^20.12.7",
"@types/nodemailer": "^6.4.14",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"eslint": "^9.8.0",
"globals": "^15.9.0",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"ts-node": "10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "5.4.5",
"typescript-eslint": "^8.0.1"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"google-auth-library": "^9.9.0",
"install": "^0.13.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.7.0",
"morgan": "^1.10.0",
"nodemailer": "^6.9.13",
"npm": "^10.6.0",
"reflect-metadata": "^0.1.13",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"typeorm": "0.3.20",
"uuid": "^10.0.0",
"zod": "^3.23.4"
},
"scripts": {
"dev": "nodemon --exec ts-node src/index.ts",
"build": "tsc",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"start": "node ./dist/src/index.js",
"typeorm": "typeorm-ts-node-commonjs",
"generate": "typeorm migration:generate",
"migrate": "typeorm migration:run"
}
}