This repository has been archived by the owner on Jan 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.78 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@taraldefi/tariala-component-library",
"version": "1.21.0",
"main": "build/index.js",
"module": "build/index.esm.js",
"files": [
"build"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/taraldefi"
},
"types": "build/index.d.ts",
"description": "Component library for project tariala",
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"test": "jest",
"test:watch": "jest --watch",
"storybook": "storybook dev -p 6006",
"storybook:export": "storybook build",
"generate": "node ./util/create-component",
"prepublishOnly": "npm run build",
"build-storybook": "storybook build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/taraldefi/ui-library.git"
},
"keywords": [
"React",
"Component",
"Library",
"Rollup",
"Typescript",
"Sass",
"Storybook"
],
"author": "Aman Zishan",
"license": "MIT",
"bugs": {
"url": "https://github.com/taraldefi/ui-library/issues"
},
"homepage": "https://github.com/taraldefi/ui-library#readme",
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-image": "^3.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@storybook/addon-actions": "^7.1.0",
"@storybook/addon-essentials": "^7.1.0",
"@storybook/addon-interactions": "^7.1.0",
"@storybook/addon-links": "^7.1.0",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^7.1.0",
"@storybook/react-webpack5": "^7.1.0",
"@storybook/testing-library": "^0.2.0",
"@svgr/webpack": "^6.5.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.4.0",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"autoprefixer": "^9.8.6",
"babel-loader": "^9.1.2",
"babel-preset-react-app": "^10.0.1",
"colors": "^1.4.0",
"css-loader": "5.2.6",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.12.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-scss": "^4.0.0",
"rollup-plugin-svg": "^2.0.0",
"rollup-plugin-typescript2": "^0.34.1",
"sass": "^1.57.1",
"sass-loader": "10.1.1",
"storybook": "^7.1.0",
"style-loader": "2.0.0",
"ts-jest": "^29.0.5",
"typescript": "^4.9.4"
},
"dependencies": {
"@storybook/addon-knobs": "^7.0.2",
"react-feather": "^2.0.10"
}
}