-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 909 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 909 Bytes
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
{
"name": "auth-service",
"version": "1.0.0",
"description": "",
"main": "server.js",
"dependencies": {
"@types/jsonwebtoken": "^8.5.9",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"figlet": "^1.5.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.2.3",
"nodemailer": "^6.7.7",
"nodemon": "^2.0.15"
},
"scripts": {
"start": "ts-node src/server.ts",
"start:prod": "npm run build && node build/src/server.js",
"start:nodemon": "nodemon src/server.ts",
"build": "npx tsc"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/crypto-js": "^4.1.1",
"@types/express": "^4.17.14",
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tslint": "^6.1.3",
"typescript": "^4.9.3"
}
}