-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.34 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.34 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
{
"name": "momentum-back",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon --watch src --watch config --exec tsx src/server.ts",
"start": "node dist/src/server.js",
"build": "tsc",
"lint": "eslint . --fix'",
"prettier": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/codeit-momentum/momentum-back.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"bugs": {
"url": "https://github.com/codeit-momentum/momentum-back/issues"
},
"homepage": "https://github.com/codeit-momentum/momentum-back#readme",
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25.5.0",
"concurrently": "^9.2.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.0.0",
"nodemon": "^3.1.11",
"prettier": "^3.8.0",
"prisma": "6.19",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.0"
},
"dependencies": {
"@prisma/client": "6.19",
"axios": "^1.13.2",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^17.3.1",
"express": "^5.2.1"
}
}