-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.44 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.44 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
{
"name": "@frolog/express-api-server",
"version": "1.0.1",
"description": "Express를 사용한 HTTP API 서버 모듈.",
"main": "lib/index.js",
"type": "module",
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"start": "node ./src/index",
"lint": "node ./node_modules/eslint/bin/eslint src",
"lint-fix": "node ./node_modules/eslint/bin/eslint src --fix",
"doc": "node ./node_modules/jsd정oc/jsdoc src/index.js -d docs",
"test": "node ./node_modules/jest/bin/jest --passWithNoTests"
},
"author": "Gyhyung",
"license": "UNLICENSED",
"publishConfig": {
"registry": "http://dev.frolog.kr/verdaccio/"
},
"devDependencies": {
"@babel/eslint-parser": "^7.23.10",
"@babel/plugin-syntax-import-assertions": "^7.23.3",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-jsdoc": "^50.2.4",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"jest": "^29.7.0",
"jsdoc": "^4.0.2",
"prettier": "^3.2.4",
"typescript": "^5.4.5"
},
"dependencies": {
"@frolog/common-utils": "^1.0.0",
"@frolog/frolog-api": "^1.0.1",
"express": "^4.21.0",
"jsonwebtoken": "^9.0.2"
}
}