-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.46 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
{
"name": "facebuttons",
"version": "1.0.2",
"description": "",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run build:esm && npm run build:cjs && npm run copy:css",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"copy:css": "cp src/index.css dist/cjs/index.css && cp src/index.css dist/esm/index.css",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"keywords": [
"react",
"animation",
"button",
"button ui library"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.22.15",
"@storybook/addon-essentials": "^7.4.2",
"@storybook/addon-interactions": "^7.4.2",
"@storybook/addon-links": "^7.4.2",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.4.2",
"@storybook/react": "^7.4.2",
"@storybook/react-webpack5": "^7.4.2",
"@storybook/testing-library": "^0.2.1",
"@types/react": "^18.2.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.4.2",
"typescript": "^5.2.2"
},
"peerDependencies": {
"react": ">=16"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/suyashpatil78/facebuttons.git"
}
}