-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.62 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.62 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
54
55
56
57
58
{
"name": "comkaraka-back",
"version": "1.0.0",
"description": "Renewal Comkaraka mobile-application backend",
"main": "src/server.js",
"contributors": [
{
"name": "Sunwoo Jeong",
"email": "jsw777777@gmail.com",
"url": "https://whispernorbury.com"
},
{
"name": "Kevin Ahn",
"email": "suhjoonahn@gmail.com"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/whispernorbury/comkaraka-back.git"
},
"bugs": {
"url": "https://github.com/whispernorbury/comkaraka-back/issues"
},
"homepage": "https://github.com/whispernorbury/comkaraka-back#readme",
"scripts": {
"start": "node dist/server.js",
"build": "tsc",
"dev": "nodemon --exec ts-node src/server.ts",
"lint": "npx eslint src/**/*.ts",
"pretty": "npx prettier --write src/**/*.ts"
},
"license": "MIT",
"dependencies": {
"@elastic/elasticsearch": "^8.12.2",
"@typescript-eslint/parser": "^7.2.0",
"bcrypt": "^5.1.1",
"eslint-config-prettier": "^9.1.0",
"express": "^4.19.2",
"express-session": "^1.18.0",
"firebase-admin": "^12.0.0",
"mysql2": "^3.7.0",
"prettier": "^3.2.5"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/node": "^20.11.4",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"connect-redis": "^7.1.1",
"eslint": "^8.56.0",
"eslint-plugin-prettier": "^5.1.3",
"ioredis": "^5.3.2",
"nodemon": "^3.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}