-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.45 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
{
"name": "hermes-poster",
"version": "0.0.1-beta.4",
"description": "Delivery systems to translate and convert from md to others such as medium.com",
"main": "src/index.js",
"scripts": {
"test": "jest",
"test:lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier:fix": "prettier './src/**/*.{js,jsx,ts,tsx}' --write",
"prepare": "husky install",
"start": "node src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/monday9pm/Hermes-Poster.git"
},
"keywords": [
"mediumapi",
"documents",
"translator"
],
"contributors": [
"Jaeyeoul Ahn <[email protected]> (https://github.com/jb7959)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/monday9pm/Hermes-Poster/issues"
},
"homepage": "https://github.com/monday9pm/Hermes-Poster#readme",
"dependencies": {
"eslint-config-airbnb": "^19.0.4",
"marked": "4.2.12",
"moment": "^2.29.4"
},
"engines": {
"node": ">= 18"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"eslint": "^8.35.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^8.0.3",
"jest": "^29.4.3",
"prettier": "2.8.4"
}
}