-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.28 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
76
77
78
79
80
81
82
83
84
85
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "src/app.ts",
"scripts": {
"build": "tsc ",
"stop": "pm2 delete ecosystem.config.js",
"serve": "yarn stop; pm2 start ecosystem.config.js",
"sync": "yarn build && yarn serve",
"start": "nodemon",
"test": "jest",
"lint": "eslint --ignore-path .eslintignore --ext .ts src/",
"lint:fix": "yarn lint --fix"
},
"keywords": [],
"author": "Brian Kariuki <[email protected]>",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"celebrate": "^14.0.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"ffmpeg": "0.0.4",
"file-type": "^16.5.0",
"firebase-admin": "^9.9.0",
"form-data": "^4.0.0",
"got": "^11.8.2",
"helmet": "^4.6.0",
"image-size": "^1.0.0",
"inversify": "^5.1.1",
"inversify-express-utils": "^6.3.2",
"is-image": "^3.0.0",
"is-video": "^1.0.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mkdirp": "^1.0.4",
"mongoosastic": "^4.6.0",
"mongoose": "^5.12.13",
"mongoose-id-validator": "^0.6.0",
"morgan-body": "^2.6.5",
"multer": "^1.4.2",
"node-fetch": "^2.6.1",
"prettyjson": "^1.2.1",
"redis": "^3.1.2",
"reflect-metadata": "^0.1.13",
"role-acl": "^4.5.4",
"serialize-error": "^8.1.0",
"uniqid": "^5.3.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/agenda": "^4.1.0",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.12",
"@types/ffmpeg": "^1.0.4",
"@types/file-type": "^10.9.1",
"@types/jsonwebtoken": "^8.5.1",
"@types/lodash": "^4.14.170",
"@types/mkdirp": "^1.0.1",
"@types/mongoose": "^5.11.97",
"@types/multer": "^1.4.5",
"@types/node": "^15.12.2",
"@types/prettyjson": "0.0.29",
"@types/redis": "^2.8.31",
"@types/uniqid": "^5.3.0",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"nodemon": "^2.0.7",
"prettier": "^2.3.1",
"ts-node": "^10.0.0",
"tslint": "^6.1.3",
"typescript": "^4.3.2"
}
}