-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.88 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
{
"name": "@thistle-strum/react-component-library",
"version": "0.1.2",
"description": "A simple template for a custom React component library",
"engines": {
"node": "16.13.1"
},
"scripts": {
"rollup": "rollup -c",
"test": "jest",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"author": "David Benitez",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-typescript": "^8.3.0",
"@storybook/addon-actions": "^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/builder-webpack4": "^6.5.10",
"@storybook/manager-webpack4": "^6.5.10",
"@storybook/react": "^6.5.10",
"@storybook/testing-library": "^0.0.13",
"@testing-library/react": "^13.3.0",
"@types/jest": "^28.1.8",
"@types/react": "^17.0.34",
"autoprefixer": "^10.4.8",
"babel-jest": "^28.1.3",
"babel-loader": "^8.2.5",
"d3": "^7.6.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^28.1.3",
"postcss": "^8.4.16",
"react": "18.2.0",
"rollup": "^2.60.0",
"rollup-plugin-dts": "^4.0.1",
"rollup-plugin-postcss": "^4.0.2",
"tailwindcss": "^3.1.8",
"typescript": "^4.4.4"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"dependencies": {
"@types/d3": "^7.4.0",
"jest-environment-jsdom": "^28.1.3",
"react-dom": "^18.2.0",
"tslib": "^2.4.0"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/thistle-strum"
}
}