-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 2.44 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "wrappid-service",
"version": "0.0.14",
"description": "This is a service middleware to support wrappid framework development.",
"main": "src/server.js",
"scripts": {
"attributions:gen": "node ./scripts/attributions.gen.js",
"build": "npx tsc",
"start": "nodemon --watch src --exec npx ts-node src/server.ts",
"start:stage": "node src/server.js",
"start:prod": "",
"test": "jest",
"code:lint": "eslint --ignore-path .gitignore .",
"code:format": "npm run code:lint -- --fix .",
"prepare": "husky install",
"release": "standard-version --bumpFiles ./package.json ./package-lock.json "
},
"repository": {
"type": "git",
"url": "git:https://github.com/wrappid/service.git"
},
"keywords": [
"wrappid",
"nodejs",
"middleware"
],
"author": {
"name": "Wrappid",
"email": "wrappid.framework@gmail.com",
"url": "https://www.github.com/wrappid"
},
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "~3.511.0",
"aws-sdk": "~2.1433.0",
"bcrypt": "~5.1.0",
"cors": "~2.8.5",
"express": "~4.18.2",
"ioredis": "~5.3.2",
"jsonwebtoken": "~9.0.0",
"morgan": "~1.10.0",
"multer": "~1.4.5-lts.1",
"multer-s3": "~2.10.0",
"node-cron": "~3.0.2",
"node-device-detector": "~2.0.14",
"nodemailer": "~6.9.4",
"otp-generator": "~4.0.1",
"pg": "~8.11.0",
"redis": "~4.6.7",
"redis-json": "~6.0.3",
"sequelize": "~6.32.1",
"swagger-ui-express": "~5.0.0",
"yup": "~1.3.3"
},
"devDependencies": {
"@commitlint/cli": "~17.5.0",
"@commitlint/config-conventional": "~17.4.4",
"@commitlint/prompt-cli": "~17.5.0",
"@faker-js/faker": "~8.1.0",
"@types/bcrypt": "~5.0.2",
"@types/cors": "~2.8.17",
"@types/express": "~4.17.21",
"@types/jsonwebtoken": "~9.0.5",
"@types/otp-generator": "~4.0.2",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "~6.21.0",
"@typescript-eslint/parser": "~6.21.0",
"@wrappid/service-core": "0.0.86",
"eslint": "~8.56.0",
"eslint-import-resolver-typescript": "~3.6.1",
"eslint-plugin-import": "~2.29.1",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-promise": "~6.1.1",
"eslint-plugin-unused-imports": "~3.0.0",
"husky": "~8.0.3",
"jest": "~29.7.0",
"license-checker": "~25.0.1",
"nodemon": "~2.0.22",
"standard-version": "~9.5.0",
"supertest": "~7.0.0",
"ts-jest": "^29.1.2"
}
}