-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.95 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
{
"name": "bsc-scan",
"version": "1.0.0",
"main": "server.js",
"scripts": {
"build": "rimraf ./dist && tsc",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"prepare": "husky install",
"precommit": "lint-staged && npm run lint:fix",
"prepush": "npm run lint",
"seed": "yarn build && node dist/database/seeder.js",
"jobs:run": "yarn build && node dist/scheduler.js",
"start": "yarn build && node dist/server.js",
"start:dev": "npx nodemon"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"npx prettier --write",
"npx eslint --fix"
]
},
"keywords": [],
"author": "Anup Rai",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.18",
"@types/node": "^18.14.0",
"@types/node-cron": "^3.0.9",
"@types/passport": "^1.0.13",
"@types/passport-jwt": "^3.0.10",
"@types/passport-local": "^1.0.36",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.4",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"nodemon": "^2.0.20",
"prettier": "^2.8.4",
"rimraf": "^4.1.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"axios": "^1.5.1",
"bcrypt": "^5.1.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.5.4",
"node-cron": "^3.0.2",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"reflect-metadata": "^0.1.13",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"typedi": "^0.10.0",
"zod": "^3.22.4"
}
}