forked from increments/qiita-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.63 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@qiita/qiita-cli",
"version": "1.1.0",
"description": "Qiita CLI is a tool that allows you to write, preview and publish articles on Qiita from local environment.",
"keywords": [
"Qiita"
],
"homepage": "https://github.com/increments/qiita-cli",
"bugs": {
"url": "https://github.com/increments/qiita-discussions/discussions"
},
"repository": "git@github.com:increments/qiita-cli.git",
"author": {
"name": "Qiita Inc."
},
"license": "Apache-2.0",
"bin": {
"qiita": "dist/main.js"
},
"files": [
"dist/**/*",
"README.md"
],
"devDependencies": {
"@emotion/react": "^11.10.6",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.17",
"@types/jest": "^29.4.0",
"@types/node": "^18.16.18",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/webpack": "^5.28.0",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"classnames": "^2.3.2",
"eslint": "^8.44.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.3",
"jest": "^29.4.3",
"lint-staged": "^13.2.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.8.1",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.76.0",
"webpack-cli": "^5.0.1"
},
"scripts": {
"build:client": "webpack",
"build:server": "tsc --build",
"build": "run-s build:server build:client",
"clean": "tsc --build --clean",
"dev:client": "webpack --watch",
"dev:server": "tsc --build --watch",
"dev": "run-p dev:*",
"format": "eslint --fix . && prettier --list-different --write .",
"lint": "run-p lint:*",
"lint:prettier:fix": "prettier --list-different --ignore-unknown --write",
"lint:prettier": "prettier --check .",
"lint:eslint:fix": "eslint --fix",
"lint:eslint": "eslint .",
"lint:typecheck": "tsc --noEmit",
"prepare": "husky install",
"qiita": "node dist/main.js",
"test": "jest"
},
"dependencies": {
"arg": "^5.0.2",
"boxen": "^7.1.1",
"chalk": "^5.3.0",
"chokidar": "^3.5.3",
"debug": "^4.3.4",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"gray-matter": "^4.0.3",
"open": "^9.1.0",
"ws": "^8.12.1"
},
"packageManager": "yarn@1.22.19",
"engines": {
"node": ">=18.0.0"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"yarn run lint:eslint:fix"
],
"*": [
"yarn run lint:prettier:fix"
]
}
}