-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
66 lines (66 loc) · 1.83 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
{
"name": "react-well-plates",
"version": "7.0.3",
"description": "Render well plates in react",
"main": "lib/src/index.js",
"module": "lib-es/src/index.js",
"types": "lib-es/src/index.d.ts",
"files": [
"lib/src",
"lib-es/src",
"src"
],
"scripts": {
"build": "npm run clean && npm run build:ts",
"build:ts": "tsc && tsc -p tsconfig.es.json",
"check-types": "tsc --noEmit",
"clean": "rimraf lib lib-es",
"prepack": "npm run build",
"dev": "storybook dev",
"build-storybook": "storybook build",
"eslint": "eslint .",
"eslint-fix": "npm run eslint -- --fix",
"prettier": "prettier --check .",
"prettier-write": "prettier --write .",
"test": "npm run eslint && npm run check-types && npm run prettier",
"storybook": "storybook dev -p 6006"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zakodium-oss/react-well-plates.git"
},
"keywords": [],
"author": "Daniel Kostro",
"license": "MIT",
"bugs": {
"url": "https://github.com/zakodium-oss/react-well-plates/issues"
},
"homepage": "https://github.com/zakodium-oss/react-well-plates#readme",
"peerDependencies": {
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
},
"devDependencies": {
"@storybook/addon-essentials": "^8.2.8",
"@storybook/addon-links": "^8.2.8",
"@storybook/addon-storysource": "^8.2.8",
"@storybook/blocks": "^8.2.8",
"@storybook/react": "^8.2.8",
"@storybook/react-vite": "^8.2.8",
"@storybook/test": "^8.2.8",
"@types/react": "^17.0.50",
"eslint": "^8.47.0",
"eslint-config-zakodium": "^12.0.0",
"prettier": "^3.3.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"storybook": "^8.2.8",
"typescript": "^5.5.4"
},
"dependencies": {
"well-plates": "^6.0.3"
},
"volta": {
"node": "20.16.0"
}
}