-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.85 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
{
"name": "avoid-overlap",
"version": "0.2.3",
"description": "Functions to help avoid text annotation/label overlaps",
"author": "Kevin Schaul",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"exports": "./dist/index.js",
"engines": {
"node": ">= 16"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@storybook/addon-essentials": "^7.0.26",
"@storybook/addon-interactions": "^7.0.26",
"@storybook/addon-links": "^7.0.26",
"@storybook/blocks": "^7.0.26",
"@storybook/html": "^7.0.26",
"@storybook/html-vite": "^7.0.26",
"@storybook/testing-library": "^0.2.0",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.55",
"@swc/jest": "^0.2.26",
"@types/jest": "^29.5.0",
"@types/lodash": "^4.14.194",
"@types/rbush": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"chokidar": "^3.5.3",
"chromatic": "^6.19.9",
"eslint": "^8.37.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-storybook": "^0.6.12",
"husky": "^8.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^13.2.3",
"prettier": "^2.8.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.0.26",
"typescript": "^5.0.3"
},
"scripts": {
"build": "swc src/ --out-dir dist/",
"dev": "concurrently \"swc src/ -w --out-dir dist/\" \"npm run storybook\"",
"test": "jest --passWithNoTests",
"prepare": "husky install",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"lint-staged": {
"*.js": "prettier --write --ignore-unknown"
},
"dependencies": {
"concurrently": "^8.2.0",
"lodash": "^4.17.21",
"rbush": "^3.0.1"
}
}