-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 2.3 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
69
70
71
72
73
74
75
{
"name": "edugator-staff-backend",
"version": "3.0.0",
"description": "Service API for edugator staff.",
"devDependencies": {
"@shelf/jest-mongodb": "^2.1.0",
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.0",
"@types/multer": "^1.4.7",
"@types/node": "^14.17.32",
"@types/passport": "^1.0.7",
"@types/passport-jwt": "^3.0.6",
"@types/supertest": "^2.0.11",
"@types/swagger-jsdoc": "^6.0.1",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "~8.3.0",
"eslint-plugin-jest": "~24.3.6",
"eslint-plugin-prettier": "^4.0.0",
"jest": "~29.5.0",
"nodemon": "^2.0.12",
"prettier": "~2.3.2",
"rimraf": "~3.0.2",
"ts-jest": "~29.1.1",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"tsutils": "~3.21.0",
"typescript": "~4.3.5"
},
"scripts": {
"start": "node build/src/index.js",
"clean": "rimraf coverage build tmp",
"prebuild": "npm run lint",
"build": "tsc -p tsconfig.release.json",
"dev": "nodemon --watch './**/*.ts' --exec ts-node src/index.ts",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts,.tsx",
"lint-fix": "eslint . --ext .ts,.tsx --fix",
"test": "jest --coverage --detectOpenHandles --forceExit",
"test:watch": "jest --watch",
"checklist": "npm run lint-fix && npm run test && npm run build"
},
"author": "Marc Diaz [email protected]",
"dependencies": {
"@aws-sdk/client-batch": "^3.34.0",
"@aws-sdk/client-s3": "^3.34.0",
"@clerk/clerk-sdk-node": "^4.10.14",
"@clerk/types": "^3.49.0",
"axios": "^0.21.4",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"http-status": "^1.5.0",
"joi": "^17.4.2",
"joi-objectid": "^4.0.2",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"mongodb-memory-server": "^7.4.1",
"mongoose": "^6.0.6",
"multer": "^1.4.3",
"mysql2": "^3.3.3",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"sequelize": "^6.31.1",
"supertest": "^6.1.6",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.1.6",
"uuid": "^9.0.0",
"validator": "^13.7.0"
}
}