-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.19 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.19 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
{
"name": "11-sprint-mission-be",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon --env-file=./env/.env.development src/server.js",
"prod": "node --env-file=./env/.env.production src/server.js",
"format": "npx prettier --write .",
"format:check": "npx prettier --check ."
},
"imports": {
"#config": "./src/config/config.js",
"#db/*": "./src/db/*",
"#constants": "./src/constants/index.js",
"#utils": "./src/utils/index.js",
"#middlewares": "./src/middlewares/index.js",
"#exceptions": "./src/exceptions/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sumforest-ha/11-sprint-mission-be.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"bugs": {
"url": "https://github.com/sumforest-ha/11-sprint-mission-be/issues"
},
"homepage": "https://github.com/sumforest-ha/11-sprint-mission-be#readme",
"dependencies": {
"cors": "^2.8.5",
"express": "^5.2.1",
"mongoose": "^9.1.4",
"zod": "^4.3.5"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"eslint": "^9.39.2",
"nodemon": "^3.1.11",
"prettier": "^3.8.0"
}
}