-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.94 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": "hosan_notice_backend",
"version": "1.0.0",
"description": "호산 알리미 백엔드 서버",
"main": "src/index.js",
"dependencies": {
"agenda": "^4.2.1",
"axios": "^0.25.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"firebase-admin": "^10.2.0",
"googleapis": "^92.0.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.1.8",
"node-cache": "^5.1.2",
"swagger-jsdoc": "^6.2.1",
"swagger-ui-express": "^4.4.0",
"winston": "^3.5.0",
"winston-daily-rotate-file": "^4.6.0"
},
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/prettier": "^2.4.3",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"express": "^4.17.2",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
},
"scripts": {
"start": "cross-env NODE_ENV=production node build/index.js",
"dev": "cross-env NODE_ENV=development nodemon --exec ts-node --files src/index.ts",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"prebuild": "npm run clean",
"build": "tsc",
"clean": "rimraf build",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArpaAP/hosan_notice_backend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ArpaAP/hosan_notice_backend/issues"
},
"homepage": "https://github.com/ArpaAP/hosan_notice_backend#readme"
}