-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.82 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
{
"name": "digital-cow-hut-backend-auth",
"version": "1.0.0",
"description": "",
"engines": {
"node": ">=16"
},
"scripts": {
"start": "node dist/server.js",
"dev": "ts-node-dev --respawn --transpile-only src/server.ts",
"build": "tsc",
"lint:check": "eslint --ignore-path .eslintignore --ext .js,.ts .",
"lint:fix:": "eslint . --fix",
"prettier:check": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"prettier:fix:": "prettier --write .",
"lint-prettier": "yarn lint:check && yarn prettier:check",
"test": "echo \"Error: no test specified\" && exit 1"
},
"lint-staged": {
"src/**/*.ts": "yarn lint-prettier"
},
"author": "mithulix",
"license": "MIT",
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/node": "*",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^37.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.0",
"prettier": "^3.0.2",
"ts-node-dev": "^2.0.0",
"typescript": "*"
},
"dependencies": {
"@types/bcrypt": "^5.0.0",
"@types/jsonwebtoken": "^9.0.2",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"http-status": "^1.6.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.4.3",
"vercel": "^32.1.0",
"winston": "^3.10.0",
"winston-daily-rotate-file": "^4.7.1",
"zod": "^3.21.4"
},
"main": "index.js",
"repository": "https://github.com/mithulix/Digital-cow-hut-backend-with-Auth.git"
}