-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.18 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
{
"name": "basic",
"version": "1.0.0",
"description": "",
"main": "./dist/index.js",
"scripts": {
"predev":"tsoa swagger",
"dev": "nodemon -x " ,
"start": "node dist/index.js",
"generate": "tsoa swagger"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts",
"exec": "ts-node src/index.ts &&tsoa swagger"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.1",
"easyinvoice": "^2.3.0",
"eslint": "^8.18.0",
"express": "^4.18.1",
"generate-password": "^1.7.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.3.4",
"multer": "^1.4.4",
"nodemailer": "^6.7.5",
"nodemon": "^1.19.4",
"swagger-ui-express": "^4.4.0",
"ts-node": "^10.8.2",
"tsoa": "^4.1.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/multer": "^1.4.7",
"@types/node": "^18.0.3",
"@types/nodemailer": "^6.4.4",
"@types/swagger-ui-express": "^4.1.3"
}
}