-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.98 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
{
"name": "tessarus",
"version": "1.0.0",
"main": "app.js",
"repository": "https://github.com/DSCKGEC/tessarus.git",
"author": "Soumyajit Datta <soumyajitdatta123@gmail.com>",
"license": "Apache-2.0",
"scripts": {
"build": "tsc",
"start": "nodemon app.ts",
"test": "jest",
"test:config": "jest --testPathPattern=tests/config.test.ts",
"test:basic": "jest --testPathPattern=tests/basic.test.ts",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"prettyfix": "prettier --write . && eslint . --ext .ts --fix",
"prepare": "husky install"
},
"dependencies": {
"@joi/date": "^2.1.0",
"@types/cors": "^2.8.12",
"@types/express-serve-static-core": "^4.17.1",
"@types/jest": "^29.4.0",
"@types/joi": "^17.2.3",
"@types/morgan": "^1.9.4",
"@types/multer": "^1.4.7",
"@types/sanitize-html": "^2.3.2",
"@types/supertest": "^2.0.12",
"@types/uuid": "^9.0.0",
"aws-sdk": "^2.1306.0",
"axios": "^1.2.4",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.33.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"eslint": "^8.33.0",
"express": "^4.17.1",
"express-rate-limit": "^6.7.0",
"jest": "^29.4.2",
"jsonwebtoken": "^9.0.0",
"mailgun.js": "^10.2.1",
"moment": "^2.29.4",
"mongoose": "^6.0.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"multer-storage-cloudinary": "^4.0.0",
"request-ip": "^3.3.0",
"rotating-file-stream": "^3.0.4",
"sanitize-html": "^2.4.0",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.5",
"@types/node": "^16.7.2",
"@types/request-ip": "^0.0.41",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"husky": "^8.0.0",
"nodemon": "^2.0.12",
"prettier": "^2.8.4",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
}
}