-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
84 lines (84 loc) · 2.43 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
81
82
83
84
{
"name": "react-trello-ts",
"version": "2.1.1",
"description": "Pluggable typesafe components to add a trello like kanban board to your application",
"main": "./dist/index.mjs",
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"types": "./dist/index.d.ts",
"files": ["dist", "README"],
"engines": { "node": ">=18" },
"scripts": {
"prepublish": "pnpm build",
"storybook": "storybook dev -p 6006",
"storybook:no-open": "pnpm storybook --no-open",
"test": "start-server-and-test storybook:no-open http://localhost:6006 test-storybook",
"test-storybook": "test-storybook",
"build": "unbuild",
"docs": "storybook build -o docs",
"build-storybook": "storybook build -o storybook-build",
"lint": "pnpm biome check .",
"release": "pnpm build && pnpm changeset publish",
"changeset": "changeset"
},
"repository": {
"type": "git",
"url": "https://github.com/KaiSpencer/react-trello-ts"
},
"keywords": ["react", "trello", "board", "typescript"],
"author": "Kai Spencer",
"license": "MIT",
"bugs": {
"url": "https://github.com/KaiSpencer/react-trello-ts/issues"
},
"homepage": "https://github.com/KaiSpencer/react-trello-ts",
"dependencies": {
"autosize": "^4.0.4",
"classnames": "^2.5.1",
"immer": "^9.0.21",
"react-popopo": "^2.1.9",
"react-trello-ts-smooth-dnd": "^0.0.3",
"uuid": "^9.0.1",
"zustand": "^4.5.2"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.3",
"@biomejs/biome": "1.4.1",
"@changesets/cli": "^2.27.5",
"@chromatic-com/storybook": "^1.5.0",
"@microsoft/api-extractor": "^7.47.0",
"@storybook/addon-essentials": "^8.1.10",
"@storybook/cli": "^8.1.10",
"@storybook/core-events": "^8.1.10",
"@storybook/react": "^8.1.10",
"@storybook/react-vite": "^8.1.10",
"@storybook/test-runner": "^0.18.2",
"@types/node": "^18.19.39",
"@types/react": "^16.14.60",
"@types/react-dom": "^16.9.24",
"@types/styled-components": "^5.1.34",
"@types/uuid": "^8.3.4",
"i18next": "^17.3.1",
"playwright": "^1.44.1",
"publint": "^0.2.8",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^10.13.2",
"start-server-and-test": "^2.0.4",
"storybook": "^8.1.10",
"styled-components": "^5.3.11",
"typescript": "^5.5.2",
"unbuild": "3.0.0-rc.2"
},
"peerDependencies": {
"react": ">=16.8.0 <=18",
"react-dom": ">=16.8.0 <=18",
"styled-components": ">= 4.0.3"
},
"packageManager": "[email protected]"
}