-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.86 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.86 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
{
"name": "nardo-primitives",
"version": "0.1.0",
"description": "",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"type": "module",
"scripts": {
"build": "rm -rf /dist && rollup -c",
"watch": "rollup -cw",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"create-component": "node ./create-component.cjs"
},
"keywords": [
"React",
"components",
"library",
"primitives",
"headless",
"acessibility"
],
"author": "Kamil Pyszkowski",
"license": "MIT",
"devDependencies": {
"@babel/preset-react": "^7.18.6",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@storybook/addon-essentials": "^7.0.0-beta.36",
"@storybook/addon-interactions": "^7.0.0-beta.36",
"@storybook/addon-links": "^7.0.0-beta.36",
"@storybook/blocks": "^7.0.0-beta.36",
"@storybook/react": "^7.0.0-beta.36",
"@storybook/react-vite": "^7.0.0-beta.36",
"@storybook/testing-library": "^0.0.13",
"@types/react": "^18.0.27",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-storybook": "^0.6.10",
"prettier": "^2.8.3",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.12.0",
"rollup-plugin-dts": "^5.1.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript-paths": "^1.4.0",
"storybook": "^7.0.0-beta.36",
"tslib": "^2.5.0",
"typescript": "^4.9.4",
"vite-tsconfig-paths": "^4.0.5"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}