-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·52 lines (52 loc) · 1.45 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
{
"name": "taxtds-server",
"version": "1.0.0",
"license": "MIT",
"description": "TAX TDS API",
"author": "MD Rashid Hussain",
"main": "build/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/m3rashid/taxtds-new.git"
},
"bugs": {
"url": "https://github.com/m3rashid/taxtds-new/issues"
},
"scripts": {
"start": "NODE_ENV=development ts-node index.ts",
"dev": "NODE_ENV=development ts-node-dev --respawn index.ts",
"build": "tsc && cp -r ./uploads ./build/uploads && mkdir ./build/utils/keys && node ./build/utils/generateKeyPair.js",
"prod": "NODE_ENV=production node ./build/index.js"
},
"dependencies": {
"bcrypt": "^5.0.1",
"cloudinary": "^1.29.0",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-rate-limit": "^6.3.0",
"googleapis": "^100.0.0",
"helmet": "^5.0.2",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.2.10",
"multer": "^1.4.4",
"nodemailer": "^6.7.2",
"sharp": "^0.30.3",
"winston": "^3.7.2",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/multer": "^1.4.7",
"@types/node": "^17.0.23",
"@types/nodemailer": "^6.4.4",
"@types/sharp": "^0.30.1",
"ts-node": "^10.7.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.3"
}
}