-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.27 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
{
"name": "@reviz/monorepo",
"version": "0.0.0",
"description": "An engine for reverse engineering data visualizations from the DOM.",
"private": true,
"author": {
"name": "Parker Ziegler",
"email": "[email protected]"
},
"license": "MIT",
"homepage": "https://github.com/parkerziegler/reviz#readme",
"repository": {
"type": "git",
"url": "https://github.com/parkerziegler/reviz.git"
},
"bugs": "https://github.com/parkerziegler/reviz/issues",
"keywords": [
"data visualization",
"reverse engineering",
"observable",
"observable plot",
"typescript"
],
"workspaces": [
"packages/*"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.9.0",
"lerna": "^8.0.0",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11"
},
"scripts": {
"build": "lerna run build",
"format": "prettier --write .",
"lint": "eslint --ext .ts,.tsx .",
"lint:fix": "eslint --ext .ts,.tsx . --fix",
"version": "lerna version"
},
"packageManager": "[email protected]"
}