-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.08 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
{
"private": true,
"packageManager": "[email protected]",
"workspaces": [
"plugins/**/*"
],
"scripts": {
"postinstall": "husky install",
"format": "prettier -c .",
"lint": "eslint",
"ci": "yarn format && yarn lint",
"fix": "yarn fix-format && yarn fix-lint",
"fix-format": "prettier -w .",
"fix-lint": "eslint --fix .",
"update-vizzu": "node ./tools/updateVizzuMinorVersion.cjs"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"@vizzu/eslint-config": "^1.0.0",
"@vizzu/prettier-config": "^0.1.0",
"esbuild": "^0.24.0",
"esbuild-plugin-copy": "^2.1.1",
"esbuild-plugin-polyfill-node": "^0.3.0",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.10.3",
"eslint-plugin-promise": "^7.1.0",
"glob": "^11.0.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"typescript": "^5.5.2",
"vizzu": "~0.16.0"
},
"prettier": "@vizzu/prettier-config"
}