-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 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
{
"name": "server",
"main": "build/index.js",
"scripts": {
"start": "node build/index.js",
"build": "tsc",
"lint": "eslint . --ext .ts",
"dev": "tsc-watch --onSuccess \"node ./build/index.js\""
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/mongodb": "^3.5.31",
"@types/multer": "^1.4.7",
"@types/node": "^14.14.5",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"eslint": "^7.12.1",
"tsc-watch": "^4.2.9",
"typescript": "^4.7.4"
},
"dependencies": {
"@types/csvtojson": "^2.0.0",
"aws-sdk": "^2.1176.0",
"bcrypt": "^5.0.1",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"csvtojson": "^2.0.10",
"dot": "^1.1.3",
"dotenv": "^8.2.0",
"express": "^4.18.1",
"helmet": "^4.1.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.2",
"multer": "^1.4.5-lts.1",
"nanoid": "^3.1.20",
"node-cron": "^3.0.1",
"uuid": "^8.3.2",
"winston": "^3.3.3",
"winston-mongodb": "^5.0.7",
"yup": "^0.32.9"
},
"author": "SRMKZILLA <[email protected]>",
"license": "MIT"
}