-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.84 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.84 KB
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
{
"name": "@collaborne/material-kanban",
"version": "2.5.11",
"description": "Material styled Kanban board",
"author": "Collaborne",
"license": "MIT",
"repository": "Collaborne/material-kanban",
"main": "dist/index.js",
"source": "src/index.tsx",
"engines": {
"npm": ">=8.3.0",
"node": ">=10"
},
"scripts": {
"build": "tsc --noEmit false -p tsconfig.build.json",
"build:watch": "tsc-watch --noEmit false -p tsconfig.build.json --onSuccess \"npx yalc push --watch\"",
"lint": "npx eslint --report-unused-disable-directives $(node -p 'require(\"./tsconfig.test.json\").include.map(include => `'\\${include}.\\{js,ts,tsx\\}'`).join(\" \")')",
"test": "npm run typecheck && npm run lint",
"typecheck": "tsc -p tsconfig.json --noEmit",
"predeploy": "run-s storybook:build",
"deploy": "gh-pages -d storybook-static -b deploy/gh-pages",
"storybook": "NODE_OPTIONS=\"${NODE_OPTIONS} --openssl-legacy-provider\" storybook dev -p 9009",
"storybook:build": "NODE_OPTIONS=\"${NODE_OPTIONS} --openssl-legacy-provider\" storybook build --quiet"
},
"peerDependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.4",
"@mui/material": "^7.3.4",
"react": "^18.0.0 || ^19.0.0",
"tss-react": "^4.9.19"
},
"devDependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.4",
"@mui/material": "^7.3.4",
"@storybook/addon-actions": "^8.6.14",
"@storybook/addon-backgrounds": "^8.6.14",
"@storybook/react": "^8.6.14",
"@storybook/react-vite": "^8.6.14",
"@testing-library/jest-dom": "6.4.2",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^28.1.2",
"@types/node": "^22.10.1",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.1",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"@vitejs/plugin-react": "^4.2.1",
"cross-env": "^7.0.3",
"eslint": "^8.18.0",
"eslint-config-collaborne": "^5.4.10",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-standard": "^4.1.0",
"eslint-plugin-storybook": "^0.11.0",
"gh-pages": "^4.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-is": "^19.2.0",
"standard": "^17.1.0",
"storybook": "^8.6.14",
"tsc-watch": "^7.2.0",
"tss-react": "^4.9.19",
"typescript": "^5.7.2"
},
"dependencies": {
"@atlaskit/pragmatic-drag-and-drop": "^1.7.7"
},
"overrides": {
"eslint-config-standard-react": {
"eslint": "^8"
}
},
"files": [
"dist",
"src",
"tsconfig.json"
]
}