-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.06 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
{
"name": "telbby-backend",
"version": "1.0.0",
"description": "telbby backend application",
"main": "src/app.ts",
"repository": "https://github.com/w-campers/telbby-backend.git",
"author": "w-campers",
"license": "MIT",
"scripts": {
"dev": "env-cmd -f .env.dev nodemon --exec ts-node src/app.ts",
"build": "tsc",
"start": "NODE_ENV=production node dist/app.js",
"lint": "eslint ./src --ext .ts",
"lint:fix": "eslint ./src --ext .ts --fix",
"prettier:write": "yarn prettier --write .",
"prepare": "husky install",
"precommit": "yarn lint-staged",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@telbby/validation": "^1.1.4",
"bcrypt": "^5.0.1",
"cloudinary": "^1.27.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"joi": "^17.4.2",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"multer": "^1.4.3",
"mysql2": "^2.3.2",
"reflect-metadata": "^0.1.13",
"typedi": "^0.10.0",
"typeorm": "^0.2.38",
"typeorm-naming-strategies": "^2.0.0",
"typeorm-typedi-extensions": "^0.4.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.2",
"@types/jsonwebtoken": "^8.5.5",
"@types/morgan": "^1.9.3",
"@types/multer": "^1.4.7",
"@types/node": "^16.11.1",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"env-cmd": "^10.1.0",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-airbnb-typescript": "^14.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.0",
"jest": "^27.3.1",
"lint-staged": "^11.2.4",
"nodemon": "^2.0.13",
"prettier": "^2.4.1",
"ts-jest": "^27.0.7",
"ts-node": "^10.3.0",
"typescript": "^4.4.4"
}
}