-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.44 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": "servineo-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Servineo/servineo-backend.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"type": "commonjs",
"bugs": {
"url": "https://github.com/Servineo/servineo-backend/issues"
},
"homepage": "https://github.com/Servineo/servineo-backend#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"mongoose": "^8.19.3",
"typescript": "^5.9.3",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/node": "^24.7.2"
},
"devDependencies": {
"@eslint/css": "^0.11.1",
"@eslint/js": "^9.36.0",
"@eslint/markdown": "^7.3.0",
"@typescript-eslint/eslint-plugin": "^8.45.0",
"@typescript-eslint/parser": "^8.45.0",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.4.0",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript-eslint": "^8.45.0"
}
}