forked from rcdexta/react-trello
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.09 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@appleple/react-trello",
"version": "1.0.11",
"type": "module",
"description": "Pluggable components to add a trello like kanban board to your application",
"browserslist": [
"defaults",
"safari >= 12"
],
"files": [
"dist",
"README"
],
"main": "dist/index.umd.cjs",
"module": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"scripts": {
"prepack": "npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"storybook": "storybook dev -p 6006",
"build": "vite build",
"deploy-storybook": "storybook-to-ghpages",
"prettier": "prettier \"./src/**/*.{js,ts,jsx,tsx}\" \"./stories/**/*.{js,ts,jsx,tsx}\" --write",
"build-storybook": "storybook build",
"lint": "eslint \"./src/**/*.{js,ts,jsx,tsx}\" \"./stories/**/*.{js,ts,jsx,tsx}\"",
"lint:fix": "eslint \"./src/**/*.{js,ts,jsx,tsx}\" \"./stories/**/*.{js,ts,jsx,tsx}\" --fix",
"release:patch": "npm version patch && git push --follow-tags && npm publish",
"release:minor": "npm version minor && git push --follow-tags && npm publish",
"release:major": "npm version major && git push --follow-tags && npm publish",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/appleple/react-trello"
},
"keywords": [
"react",
"trello",
"board"
],
"author": "appleple",
"license": "MIT",
"bugs": {
"url": "https://github.com/appleple/react-trello/issues"
},
"homepage": "https://github.com/appleple/react-trello",
"dependencies": {
"immutability-helper": "^3.1.1",
"lodash": "^4.17.21",
"prop-types": "^15.8.1",
"react-redux": "^9.1.2",
"redux": "^5.0.1",
"redux-actions": "^3.0.3",
"redux-logger": "^3.0.6",
"smooth-dnd": "^0.12.1",
"styled-components": "6.1.13",
"uuid": "^10.0.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.8.0",
"@eslint/js": "^9.9.1",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-interactions": "^8.2.9",
"@storybook/addon-links": "^8.2.9",
"@storybook/blocks": "^8.2.9",
"@storybook/react": "^8.2.9",
"@storybook/react-vite": "^8.2.9",
"@storybook/test": "^8.2.9",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-storybook": "^0.8.0",
"globals": "^15.9.0",
"husky": "^9.1.5",
"lint-staged": "^15.2.10",
"prettier": "3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"storybook": "^8.2.9",
"vite": "^5.4.2"
},
"peerDependencies": {
"react": ">= 18.0.0 < 19.0.0",
"react-dom": ">= 18.0.0 < 19.0.0"
},
"publishConfig": {
"access": "public"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
},
"lint-staged": {
"src/**/*.{js,ts,jsx,tsx}}": [
"prettier --write",
"eslint --fix"
],
"stories/**/*.{js,ts,jsx,tsx}}": [
"prettier --write",
"eslint --fix"
]
}
}