-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.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
{
"name": "mongo-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"init": "pnpm install && sh ./scripts/jwt-keygen.sh",
"create-rsa": "sh ./scripts/jwt-keygen.sh",
"start": "NODE_ENV=development nodemon index.ts",
"prod": "NODE_ENV=production node ./dist/index.js",
"build": "tsc",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.0",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"express-rate-limit": "^6.7.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.6.3",
"ms": "^2.1.3",
"rate-limit-redis": "^3.0.1",
"redis": "^4.5.1",
"supervisor": "^0.12.0",
"swagger-ui-express": "^4.6.0",
"yamljs": "^0.3.0",
"zod": "^3.19.1"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.14",
"@types/jsonwebtoken": "^8.5.9",
"@types/ms": "^0.7.31",
"@types/node": "^18.8.0",
"@types/swagger-ui-express": "^4.1.3",
"@types/yamljs": "^0.2.31",
"concurrently": "^7.4.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}