-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
42 lines (42 loc) · 1.29 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
{
"name": "korea-webtoon-api",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/HyeokjaeLee/korea-webtoon-api.git",
"author": "HyeokjaeLee <[email protected]>",
"license": "MIT",
"dependencies": {
"axios": "^1.7.2",
"axios-retry": "^4.4.0",
"cors": "^2.8.5",
"express": "^4.19.2",
"reflect-metadata": "^0.2.2",
"sqlite3": "^5.1.7",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typeorm": "^0.3.20",
"typescript": "^5.4.5"
},
"scripts": {
"dev": "NODE_ENV=development && ts-node-dev --respawn --transpile-only -r tsconfig-paths/register ./src/index.ts",
"start": "ts-node -r tsconfig-paths/register src/index.ts"
},
"devDependencies": {
"@hyeokjaelee/prettier-config": "^1.3.5",
"@types/cors": "^2",
"@types/express": "^4.17.21",
"@types/node": "^20.14.2",
"@types/swagger-jsdoc": "^6",
"@types/swagger-ui-express": "^4.1.6",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"eslint": "^9.4.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-node": "^11.1.0",
"prettier": "^3.3.1",
"ts-node-dev": "^2.0.0"
}
}