-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.42 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
{
"name": "pareto",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "pnpm --filter @paretojs/core build || true",
"lint": "eslint . --quiet --cache",
"lint:fix": "eslint . --fix --quiet --cache",
"format": "prettier --cache --check . --ignore-path .gitignore",
"format:fix": "prettier --cache --write . --ignore-path .gitignore",
"prepare": "husky"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@jsdevtools/version-bump-prompt": "^6.1.0",
"@types/eslint": "^8.56.6",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"consola": "^3.2.3",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"globals": "^15.6.0",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"tsx": "^4.11.0",
"typescript": "^5.4.5",
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"commitlint": "^19.2.1",
"lint-staged": "^15.2.7"
},
"lint-staged": {
"*.{js,json}": [
"prettier --write"
],
"*.ts?(x)": [
"eslint --fix",
"prettier --write"
]
}
}