-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.27 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
{
"name": "jabama-assignment",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"swagger": "tsoa spec",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"build": "tsc --project ./",
"start:local": "npm run swagger && NODE_ENV=development ts-node-dev --project ./tsconfig.json --respawn ./src/index.ts",
"start:server:production": "cd dist && pm2-runtime src/index.js",
"prettify": "prettier --write '**/*.ts*'"
},
"dependencies": {
"body-parser": "^1.20.0",
"dotenv": "16.0.0",
"express": "4.17.3",
"handy-redis": "^2.3.1",
"mongoose": "^5.7.7",
"nodemailer": "^6.7.7",
"redis": "3.1.2",
"swagger-ui-express": "4.3.0",
"tsoa": "3.14.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/mongoose": "^5.7.7",
"@types/node": "^16.11.10",
"@types/redis": "^4.0.11",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^8.3.4",
"eslint": "8.10.0",
"eslint-config-prettier": "8.5.0",
"prettier": "2.5.1",
"ts-node": "10.7.0",
"ts-node-dev": "1.1.8",
"typescript": "4.5.2"
},
"keywords": [],
"author": "",
"license": "ISC"
}