-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.89 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": "backend",
"version": "1.0.0",
"description": "Software Backend",
"main": "index.js",
"scripts": {
"start": "nodemon ./src/app.ts",
"test": "jest --runInBand --detectOpenHandles --forceExit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WHEEL-E/Backend.git"
},
"author": "Wheel.E Team",
"license": "ISC",
"bugs": {
"url": "https://github.com/WHEEL-E/Backend/issues"
},
"homepage": "https://github.com/WHEEL-E/Backend#readme",
"devDependencies": {
"@types/jest": "^27.5.0",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"jest": "^27.0.0",
"mongodb-memory-server": "^8.5.2"
},
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.3",
"@types/jsonwebtoken": "^8.5.8",
"@types/nodemailer": "^6.4.4",
"@types/nodemailer-sendgrid": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"aws-sdk": "^2.1162.0",
"axios": "^0.27.2",
"bcryptjs": "^2.4.3",
"config": "^3.3.7",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.0.1",
"express": "^4.17.3",
"express-validator": "^6.14.0",
"increase-memory-limit": "^1.0.7",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.2.9",
"multer": "^1.4.4",
"multer-gridfs-storage": "^5.0.2",
"nodemailer": "^6.7.5",
"nodemailer-sendgrid": "^1.0.3",
"nodemailer-sendgrid-transport": "^0.2.0",
"nodemon": "^2.0.15",
"ts-jest": "^28.0.5",
"ts-node": "^10.7.0",
"typescript": "^4.7.4"
},
"engines": {
"npm": ">=6.0.0",
"node": ">=14.0.0"
}
}