-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.01 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.01 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
59
60
{
"name": "Backend",
"version": "3.0.0",
"main": "app.ts",
"repository": "https://github.com/sounwoo/Backend.git",
"author": "sounwoo <mna800@naver.com>",
"license": "MIT",
"scripts": {
"start:dev": "nodemon --exec ts-node src/app.ts",
"start": "tsc -p . && node dist/app.js",
"swagger": "node src/common/swagger/swagger.ts",
"qqq": "ts-node src/common/crawiling/q-net.ts",
"lang": "ts-node src/common/crawiling/language.ts"
},
"dependencies": {
"@prisma/client": "^5.1.1",
"@types/node": "^20.5.0",
"axios": "^1.4.0",
"cheerio": "^1.0.0-rc.12",
"class-validator": "^0.14.0",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"decode-html": "^2.0.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-session": "^1.17.3",
"ioredis": "^5.3.2",
"jsonwebtoken": "^9.0.1",
"nodemon": "^3.0.1",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0",
"passport-kakao": "^1.0.1",
"passport-naver": "^1.0.6",
"prisma": "^5.1.1",
"redis": "^4.6.7",
"swagger-autogen": "^2.23.5",
"swagger-ui-express": "^5.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/crypto-js": "^4.1.1",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@types/jsonwebtoken": "^9.0.2",
"@types/passport": "^1.0.12",
"@types/passport-google-oauth20": "^2.0.11",
"@types/passport-kakao": "^1.0.0",
"@types/passport-naver": "^1.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.1"
}
}