-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.37 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.37 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
{
"name": "components",
"version": "1.0.0",
"description": "Keymorph's shared components library",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"scripts": {
"build": "rollup -c",
"build-storybook": "build-storybook",
"storybook": "start-storybook -p 6006",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Keymorph/components.git"
},
"author": "Keymorph",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Keymorph/components/issues"
},
"homepage": "https://github.com/Keymorph/components#readme",
"devDependencies": {
"@babel/core": "^7.18.10",
"@headlessui/react": "^1.6.6",
"@mdx-js/react": "^2.1.2",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.4",
"@storybook/addon-actions": "^6.5.10",
"@storybook/addon-docs": "^6.5.10",
"@storybook/addon-essentials": "^6.5.10",
"@storybook/addon-interactions": "^6.5.10",
"@storybook/addon-links": "^6.5.10",
"@storybook/addon-postcss": "2.0.0",
"@storybook/addons": "^6.5.10",
"@storybook/builder-webpack5": "^6.5.10",
"@storybook/manager-webpack5": "^6.5.10",
"@storybook/react": "^6.5.10",
"@storybook/testing-library": "^0.0.13",
"@storybook/theming": "^6.5.10",
"@testing-library/dom": "^8.17.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^28.1.6",
"@types/node": "^18.7.1",
"@types/react": "^18.0.17",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"framer-motion": "^7.1.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"require-from-string": "^2.0.2",
"rollup": "^2.77.3",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"tailwindcss": "^3.1.8",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"packageManager": "yarn@3.2.2"
}