-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
80 lines (80 loc) · 2.39 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
{
"name": "json-schema-editor",
"homepage": "https://jingwangtw.github.io/json-schema-editor",
"version": "2.1.3",
"private": false,
"dependencies": {
"@types/node": "^20.3.1",
"@types/react": "^18.2.13",
"@types/react-dom": "^18.2.6",
"@uiw/react-textarea-code-editor": "^2.1.6",
"ajv": "^8.12.0",
"bootstrap": "^5.3.0",
"next": "^14.2.10",
"next-remove-imports": "^1.0.11",
"react": "^18.2.0",
"react-bootstrap": "^2.10.2",
"react-dom": "^18.2.0",
"react-icons": "^4.10.1",
"typescript": "^5.1.3"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"eslint": "^8.43.0",
"eslint-config-next": "^13.4.7",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"git-cz": "^4.9.0",
"husky": "^8.0.3",
"import-sort-style-module": "^6.0.0",
"lint-staged": "^15.2.10",
"prettier": "^2.8.8",
"prettier-eslint": "^15.0.1",
"prettier-eslint-cli": "^7.1.0",
"prettier-plugin-import-sort": "^0.0.7"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint": "eslint . --ext .js,.json --quiet",
"lint:fix": "eslint . --ext .js,.json --fix",
"precommit": "lint-staged",
"commit": "git-cz"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{src,app,pages}/**/*.{js,ts,tsx,ts}": [
"eslint --fix",
"eslint"
],
"*.{css,html}": [
"prettier-eslint --write"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}