-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.22 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
{
"name": "mvp",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --runInBand",
"start": "node app.js",
"dev": "nodemon app.js",
"prepare": "husky install",
"format": "prettier --write ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.10.0",
"bcryptjs": "^3.0.2",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"lodash.isequal": "^4.5.0",
"mailgen": "^2.0.29",
"mongoose": "^8.15.1",
"morgan": "^1.10.1",
"nodemailer": "^7.0.3",
"nodemon": "^3.1.10",
"uuid": "^11.1.0",
"zod": "^3.25.55"
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"cross-env": "^7.0.3",
"eslint": "^9.28.0",
"globals": "^16.2.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"lint-staged": "^16.1.0",
"mongodb-memory-server": "^10.1.4",
"prettier": "^3.5.3",
"supertest": "^7.1.1"
},
"packageManager": "yarn@4.9.2",
"lint-staged": {
"**/*.{js,ts,json}": "prettier --write"
},
"engines": {
"yarn": ">=1.22.0"
}
}