-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.07 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
{
"name": "resumex",
"version": "0.0.1",
"description": "ResumeX is the new generation open source resume platform. ResumeX forces you to prepare only 2 pages resume.",
"main": "index.js",
"scripts": {
"start": "node --env-file config/dev.env src/index.js",
"lint": "npx eslint \"./**/*.js\" --cache --cache-strategy content --fix",
"format": " npx prettier --write \"./**/*.js\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"husky": {
"hooks": {
"pre-commit": "npm run format"
}
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/jwt": "^8.0.0",
"@fastify/swagger": "^8.14.0",
"@fastify/swagger-ui": "^2.1.0",
"bcrypt": "^5.1.1",
"fastify": "^4.25.2",
"mongoose": "^8.1.0",
"validator": "^13.11.0"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0"
}
}