-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.29 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 3.29 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
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
84
85
86
87
88
89
90
91
{
"name": "nithub_api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run build && node ./build/main.js",
"start:dev": "nodemon",
"start:prod": "node build/main",
"build": "./node_modules/.bin/rimraf ./build && ./node_modules/.bin/tsc --skipLibCheck",
"migration:generate": "npx sequelize-cli migration:generate --name",
"seed:generate": "npx sequelize-cli seed:generate --name ",
"db:migrate": "npx sequelize-cli db:migrate",
"undo:db:migrate": "npx sequelize-cli db:migrate:undo --name",
"undo:db:migrate:all": "npx sequelize-cli db:migrate:undo:all",
"db:seed": "npx sequelize-cli db:seed:all",
"lint:check": "eslint --ignore-path .eslintignore \"src/**/*.+(js|ts|json)\"",
"lint:fix": "eslint \"src/**/*.+(js|ts|json)\" --fix",
"lint:staged": "eslint --ignore-path .eslintignore",
"prettier:check": "prettier --ignore-path .prettierignore --check \"src/**/*.+(js|ts|json)\"",
"prettier:fix": "prettier --ignore-path .prettierignore --write \"**/*.+(js|ts|json)\"",
"lint-prettier:check": "npm run lint:check && npm run prettier:check",
"lint-prettier:fix": "npm run lint:fix && npm run prettier:fix",
"prepare": "husky install"
},
"dependencies": {
"axios": "^1.6.2",
"bcrypt": "^5.1.1",
"cloudinary": "^1.41.0",
"convert-csv-to-json": "^2.49.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"dotenv": "^16.3.1",
"eventemitter2": "^6.4.9",
"express": "^4.18.2",
"express-fileupload": "^1.4.2",
"express-rate-limit": "^6.9.0",
"ioredis": "^5.4.1",
"jest": "^29.6.2",
"joi": "^17.9.2",
"jsonwebtoken": "^9.0.2",
"module-alias": "^2.2.3",
"moment": "^2.29.4",
"nodemailer": "^6.9.7",
"nodemailer-sendgrid": "^1.0.3",
"pg": "^8.11.3",
"rimraf": "^3.0.2",
"sequelize": "^6.35.2",
"twilio": "^5.0.0-rc.1",
"typescript": "^4.7.4",
"winston": "^3.10.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.4",
"@types/cors": "^2.8.13",
"@types/crypto-js": "^4.1.2",
"@types/express": "^4.17.17",
"@types/express-fileupload": "^1.4.4",
"@types/jest": "^29.5.3",
"@types/jsonwebtoken": "^9.0.2",
"@types/module-alias": "^2.0.1",
"@types/node": "^20.4.2",
"@types/nodemailer": "^6.4.14",
"@types/nodemailer-sendgrid": "^1.0.3",
"@types/pg": "^8.10.2",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.0",
"lint-staged": "^15.1.0",
"nodemon": "^3.0.1",
"prettier": "^2.3.2",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"lint-staged": {
"src/**/*.{js,ts,json,css,scss,md}": [
"npm run lint:staged",
"npm run prettier:fix"
]
},
"_moduleAliases": {
"@": "./build"
},
"author": "Drex",
"license": "ISC"
}