-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 2.22 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
69
70
71
72
73
74
75
76
77
78
{
"name": "esco-components",
"version": "0.1.0",
"main": "build/index.js",
"module": "build/index.esm.js",
"files": [
"build"
],
"types": "build/index.d.ts",
"description": "A skeleton to create your own React component library using Rollup, TypeScript, Styled Components and Storybook",
"scripts": {
"build": "rollup -c",
"test": "jest",
"test:watch": "jest --watch",
"storybook": "start-storybook -p 6006",
"storybook:export": "build-storybook",
"generate": "node ./util/create-component",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devrchancay/esco-components.git"
},
"keywords": [
"React",
"Component",
"Library",
"Rollup",
"Typescript",
"Storybook",
"Styled Components"
],
"author": "Ramón Chancay",
"license": "MIT",
"bugs": {
"url": "https://github.com/devrchancay/esco-components/issues"
},
"homepage": "https://github.com/devrchancay/esco-components#readme",
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"styled-components": "^5.1.1"
},
"devDependencies": {
"@babel/core": "^7.10.3",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@storybook/addon-a11y": "^5.3.19",
"@storybook/addon-docs": "^5.3.19",
"@storybook/addon-viewport": "^5.3.19",
"@storybook/react": "^5.3.19",
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^10.0.2",
"@types/jest": "^24.0.24",
"@types/react": "^16.9.12",
"@types/react-dom": "^16.9.8",
"babel-loader": "^8.1.0",
"babel-preset-react-app": "^9.1.2",
"chalk": "^4.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0",
"react": "^16.13.1",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": "^16.13.1",
"rollup": "^1.27.4",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-postcss": "^3.1.2",
"rollup-plugin-typescript2": "^0.27.0",
"ts-jest": "26.1.1",
"ts-loader": "^7.0.5",
"typescript": "^3.7.2"
},
"dependencies": {
"styled-components": "^5.1.1",
"typescript-plugin-styled-components": "^1.4.4"
}
}