-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.32 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
{
"name": "yatra-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"pre-commit": "lint-staged",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install",
"_lint": "eslint --config ./.eslintrc.js --ext js --ext jsx --ext tsx --ext ts",
"lint": "npm run _lint -- ./src/",
"lint:fix": "npm run _lint -- --fix ./src/"
},
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^3.15.1",
"bcrypt": "^5.0.1",
"cheerio": "^1.0.0-rc.10",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.17.3",
"jsonwebtoken": "^8.5.1",
"node-fetch": "^2.0.0",
"pretty": "^2.0.0",
"short-uuid": "^4.2.0",
"morgan": "^1.10.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"eslint": "^8.18.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.2",
"prettier": "^2.7.1",
"prisma": "^3.15.1"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"eslint"
]
},
"engines": {
"node": "16.x"
}
}