-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.97 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
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "tarae",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "tsc && pm2-runtime dist/index.js -i 0",
"start": "nodemon",
"build": "tsc && node dist",
"prepare": "husky install",
"lint": "./node_modules/.bin/eslint .",
"prettier": "./node_modules/.bin/prettier .",
"test": "jest --silent --runInBand --detectOpenHandles --verbose --forceExit"
},
"dependencies": {
"aws-sdk": "^2.1377.0",
"axios": "^1.4.0",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"crypto-js": "^4.1.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-validator": "^6.14.2",
"helmet": "^6.0.1",
"jsonwebtoken": "^9.0.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.3.0",
"node-schedule": "^2.1.1",
"nodemailer": "^6.9.1",
"pm2": "^5.3.0",
"prisma": "^3.8.0",
"redis": "^4.6.10",
"slack-node": "^0.1.8",
"winston": "^3.10.0",
"winston-transport": "^4.5.0"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@prisma/client": "^3.13.0",
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/crypto-js": "^4.1.1",
"@types/express": "^4.17.17",
"@types/express-validator": "^3.0.0",
"@types/helmet": "^4.0.0",
"@types/jsonwebtoken": "^9.0.2",
"@types/morgan": "^1.9.4",
"@types/multer": "^1.4.7",
"@types/multer-s3": "^3.0.0",
"@types/node": "^18.11.18",
"@types/node-schedule": "^2.1.0",
"@types/nodemailer": "^6.4.7",
"@types/slack-node": "^0.1.4",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"multer-s3": "^3.0.1",
"nodemon": "^2.0.20",
"ts-node": "^10.8.0",
"ts-node-dev": "^2.0.0-0",
"typescript": "4.6.4"
}
}