-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
98 lines (98 loc) · 2.62 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.6.2",
"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.14.0",
"@types/debug": "^4.1.12",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.2.25",
"@types/webpack": "^5.28.5",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.21.0",
"classnames": "^2.5.1",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"html-webpack-plugin": "^5.6.3",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.3",
"react": "^18.3.1",
"react-dom": "^18.2.0",
"react-router": "^7.5.1",
"ts-jest": "^29.3.2",
"ts-loader": "^9.5.2",
"typescript": "^5.8.3",
"webpack": "^5.99.6",
"webpack-cli": "^6.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",
"qiita": "node dist/main.js",
"test": "jest"
},
"dependencies": {
"arg": "^5.0.2",
"boxen": "^8.0.1",
"chalk": "^5.3.0",
"chokidar": "^4.0.3",
"debug": "^4.4.0",
"dotenv": "^16.5.0",
"express": "^4.21.2",
"gray-matter": "^4.0.3",
"open": "^10.1.1",
"ws": "^8.18.1"
},
"packageManager": "yarn@1.22.19",
"engines": {
"node": ">=20.0.0"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"yarn run lint:eslint:fix"
],
"*": [
"yarn run lint:prettier:fix"
]
}
}