-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·68 lines (68 loc) · 2 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
{
"name": "@kwikpik/kwikpik-react",
"version": "1.0.7",
"description": "",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write **/**/*.{tsx,ts,json,js,md}",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"build:rollup": "rollup -c",
"chromatic": "npx chromatic --project-token=chpt_524dc16e08cbac1",
"prepublishOnly": "yarn build:rollup && yarn format"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-image": "^3.0.2",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-typescript": "^11.1.2",
"@storybook/addon-essentials": "^7.0.24",
"@storybook/addon-interactions": "^7.0.24",
"@storybook/addon-links": "^7.0.24",
"@storybook/addon-styling": "^1.3.2",
"@storybook/blocks": "^7.0.24",
"@storybook/react": "^7.0.24",
"@storybook/react-webpack5": "^7.0.24",
"@storybook/testing-library": "^0.0.14-next.2",
"@types/react": "^18.2.14",
"@types/react-copy-to-clipboard": "^5.0.4",
"autoprefixer": "^10.4.14",
"chromatic": "^7.1.0",
"daisyui": "^3.7.3",
"dotenv": "^16.3.1",
"postcss": "^8.4.24",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.26.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-svg": "^2.0.0",
"storybook": "^7.0.24",
"tailwindcss": "^3.3.2",
"typescript": "^5.1.6"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"files": [
"dist",
"README.md",
"*.png",
"*.gif"
],
"dependencies": {
"@kwikpik/kwikpik.js": "^1.1.1",
"@react-google-maps/api": "^2.18.1",
"react-copy-to-clipboard": "^5.1.0",
"react-icons": "^4.10.1"
}
}