-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.84 KB
/
package.json
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
59
60
61
62
63
64
65
{
"name": "server-cat",
"version": "1.0.0",
"description": "",
"main": "./dist/index.js",
"scripts": {
"prepare": "husky install",
"build": "tsc",
"start": "node ./dist/index.js",
"startw": "nodemon --watch src/** --ext ts,json --ignore src/**/*.spec.ts --exec ts-node ./src/index.ts",
"lint": "eslint ./src",
"lint:es:fix": "eslint --ext js --ext ts './' --fix",
"prettier": "prettier --write src/**/*.ts",
"prettier:fix": "prettier --write src/**/*.ts --fix",
"lint-staged": "lint-staged",
"db:generate": "npx prisma generate",
"db:migrate": "prisma migrate dev",
"db:push": "npx prisma db push"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/express-session": "^1.17.5",
"@types/jsonwebtoken": "^8.5.9",
"@types/multer": "^1.4.7",
"@types/node": "^18.11.0",
"@types/passport": "^1.0.11",
"@types/passport-kakao": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "^8.25.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prisma": "^4.4.0",
"typescript": "^4.8.4"
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"dependencies": {
"@prisma/client": "^4.4.0",
"axios": "^1.1.3",
"connect-redis": "^6.1.3",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-session": "^1.17.3",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.5-lts.1",
"passport": "^0.6.0",
"passport-kakao": "^1.0.1",
"redis": "^4.3.1",
"winston": "^3.8.2"
}
}