-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"scripts": {
"start": "node dist/index.js",
"watch": "tsc -w",
"dev": "nodemon dist/index.js",
"test": "NODE_ENV=test mocha dist/test/"
},
"dependencies": {
"axios": "^0.20.0",
"body-parser": "^1.19.0",
"connect-redis": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"google-auth-library": "^9.1.0",
"google-spreadsheet": "^4.1.0",
"ioredis": "^4.17.3",
"nodemailer": "^6.9.6",
"nodemon": "^2.0.5",
"razorpay": "^2.0.6"
},
"devDependencies": {
"@types/connect-redis": "^0.0.14",
"@types/cors": "^2.8.8",
"@types/express": "^4.17.8",
"@types/express-session": "^1.17.0",
"@types/ioredis": "^4.17.5",
"@types/mocha": "^8.0.3",
"@types/node": "^20.8.2",
"@types/nodemailer": "^6.4.11",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"mocha": "^8.2.0",
"request": "^2.88.2",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.5"
}
}