-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (66 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (66 loc) · 1.76 KB
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
{
"name": "projectsetup",
"version": "1.0.0",
"main": "app.js",
"license": "MIT",
"scripts": {
"start": "nodemon dist/app.js",
"compile": "tsc -w",
"lint": "eslint --ext .ts src",
"lint:fix": "eslint --ext .ts src --fix",
"precommit": "npm run lint",
"test": "jest --detectOpenHandles"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.14",
"@types/http-errors": "^2.0.1",
"@types/jest": "^29.2.5",
"@types/jsonwebtoken": "^8.5.9",
"@types/morgan": "^1.9.3",
"@types/multer": "^1.4.7",
"@types/nodemailer": "^6.4.6",
"@types/supertest": "^2.0.12",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"eslint": "^8.29.0",
"eslint-plugin-react": "^7.31.11",
"husky": "^8.0.2",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"supertest": "^6.3.3",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
},
"dependencies": {
"@types/jest": "^29.2.5",
"@types/supertest": "^2.0.12",
"bcrypt": "^5.1.0",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.32.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"http-errors": "^2.0.0",
"jest": "^29.3.1",
"joi": "^17.7.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"multer-storage-cloudinary": "^4.0.0",
"nodemailer": "^6.8.0",
"pg": "^8.8.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.26.0",
"supertest": "^6.3.3",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"twilio": "^3.83.4",
"uuid": "^9.0.0"
}
}