-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.72 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
{
"name": "react-component-library",
"version": "1.0.0",
"description": "A compnonent library built using react and typescript",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"scripts": {
"test": "jest",
"build": "rollup -c",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arthurra/react-component-library.git"
},
"author": "Ryan Arthur",
"license": "ISC",
"bugs": {
"url": "https://github.com/arthurra/react-component-library/issues"
},
"homepage": "https://github.com/arthurra/react-component-library#readme",
"devDependencies": {
"@babel/core": "^7.16.5",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.1",
"@rollup/plugin-typescript": "^8.3.0",
"@storybook/addon-actions": "^6.4.9",
"@storybook/addon-essentials": "^6.4.9",
"@storybook/addon-links": "^6.4.9",
"@storybook/builder-webpack5": "^6.5.0-alpha.5",
"@storybook/manager-webpack5": "^6.5.0-alpha.5",
"@storybook/react": "^6.4.9",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.0.3",
"@types/react": "^17.0.38",
"@types/styled-components": "^5.1.18",
"babel": "^6.23.0",
"babel-jest": "^27.4.5",
"babel-loader": "^8.2.3",
"jest": "^27.4.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.61.1",
"rollup-plugin-dts": "^4.0.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"styled-components": "^5.3.3",
"typescript": "^4.5.4",
"webpack": "^5.65.0"
}
}