-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.53 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
84
85
{
"name": "jersey-backend",
"version": "1.0.0",
"description": "",
"main": "App.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "env-cmd -f ./.env.dev nodemon --watch . ./App.ts",
"built": "env-cmd -f ./.env.dev node build/App.js",
"build": "tsc && tsc-alias",
"prod": "env-cmd -f ./.env node build/App.js",
"prepare": "cd .. && husky install backend/.husky",
"script": "env-cmd -f ./.env.dev node",
"lint": "eslint v2"
},
"author": "Eusoff Hackers",
"license": "ISC",
"dependencies": {
"@boxyhq/saml-jackson": "^1.27.0",
"@fastify/caching": "^8.4.0",
"@fastify/cookie": "^9.3.1",
"@fastify/cors": "^8.5.0",
"@fastify/formbody": "^7.4.0",
"@fastify/redis": "^6.2.0",
"@fastify/session": "^10.9.0",
"@fastify/type-provider-json-schema-to-ts": "^2.2.2",
"@types/bcrypt": "^5.0.2",
"@types/json2csv": "^5.0.7",
"@types/nodemailer": "^6.4.15",
"abstract-cache": "^1.0.1",
"abstract-cache-mongo": "^2.0.2",
"abstract-cache-redis": "^2.0.0",
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"connect-mongo": "^5.1.0",
"connect-redis": "^7.1.1",
"crypto": "^1.0.1",
"csv": "^6.3.9",
"csv-parser": "^3.0.0",
"csv-writer": "^1.6.0",
"env-cmd": "^10.1.0",
"eslint": "^8.57.0",
"express-session": "^1.18.0",
"fastify": "^4.28.1",
"ioredis": "^5.4.1",
"json-2-csv": "^5.5.4",
"json-schema-to-ts": "^2.12.0",
"mongodb": "^6.3.0",
"mongodb-snapshot": "^1.4.1",
"mongoose": "^7.7.0",
"nodemailer": "^6.9.14",
"tsc-alias": "^1.8.10",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.3",
"winston": "^3.10.0",
"winston-mongodb": "^5.1.1",
"xkpasswd": "^1.0.5"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20.14.11",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"csv-parse": "^5.5.6",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-no-relative-import-paths": "^1.5.5",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "6.4",
"eslint-plugin-unused-imports": "^3.2.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"nodemon": "^3.1.4",
"prettier": "3.0.3",
"ts-node": "^10.9.2"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"npx prettier --write",
"npx eslint --fix"
]
}
}