-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.49 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.49 KB
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
86
87
88
89
90
91
92
{
"name": "apis",
"version": "1.0.0",
"description": "contains backend service",
"main": "index.ts",
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged"
}
},
"lint-staged": {
"src/**/*.ts": [
"eslint '*/**/*.ts'",
"git add"
]
},
"scripts": {
"lint": "eslint 'src/**/*.ts'",
"prettier:write": "prettier --write src/**/*.*",
"start": "npm run build && node dist/index.js",
"dev": "nodemon --exec node_modules/.bin/babel-node src/index.ts --extensions \".ts\" --inspect",
"tsc": "tsc",
"build": "rm -rf ./dist && npm run tsc && npm run lint && babel src -d dist --extensions \".ts\" --source-maps inline --copy-files",
"lint:fix": "eslint --fix \"src/**/*.{js,ts,tsx}\"",
"prepare": "husky install .husky"
},
"dependencies": {
"@types/bcryptjs": "2.4.2",
"@types/cors": "2.8.12",
"@types/express": "4.17.14",
"@types/jsonwebtoken": "8.5.9",
"@types/lodash": "4.14.188",
"@types/mime-types": "2.1.1",
"@types/multer": "1.4.7",
"@types/nodemailer": "6.4.6",
"bcryptjs": "2.4.3",
"body-parser": "1.20.1",
"cors": "2.8.5",
"dotenv": "10.0.0",
"express": "4.18.2",
"express-validator": "6.14.2",
"http-status": "1.5.3",
"jsonwebtoken": "8.5.1",
"lodash": "4.17.21",
"mime-types": "2.1.35",
"mongodb": "4.11.0",
"mongoose": "6.7.2",
"multer": "1.4.5-lts.1",
"node-resemble-js": "0.2.0",
"nodemailer": "6.8.0",
"stripe": "10.16.0",
"tslib": "2.4.1",
"winston": "3.8.2"
},
"devDependencies": {
"@babel/cli": "7.19.3",
"@babel/core": "7.19.6",
"@babel/node": "7.20.0",
"@babel/preset-env": "7.19.4",
"@babel/preset-typescript": "7.18.6",
"@babel/register": "7.18.9",
"@typescript-eslint/eslint-plugin": "5.42.0",
"@typescript-eslint/parser": "5.42.0",
"babel-plugin-autobind-class-methods": "5.0.1",
"babel-plugin-module-resolver": "4.1.0",
"eslint": "8.26.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-unused-imports": "2.0.0",
"eslint-watch": "8.0.0",
"husky": "7.0.4",
"lint-staged": "12.5.0",
"nodemon": "2.0.20",
"prettier": "2.7.1",
"typescript": "4.8.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kunjaltandel24/fullstack-task-rh.git"
},
"keywords": [
"Casten-io"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kunjaltandel24/fullstack-task-rh/issues"
},
"homepage": "https://github.com/kunjaltandel24/fullstack-task-rh#readme"
}