This repository has been archived by the owner on Mar 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
127 lines (127 loc) · 3.86 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "@groww-tech/ui-toolkit",
"version": "0.1.9",
"description": "A lightning nature UI",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types",
"files": [
"/dist"
],
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/Groww/ui-toolkit.git"
},
"author": "Vikas Singh <[email protected]> (https://twitter.com/VikasSi25579022)",
"contributors": [
{
"name": "Ankit Chouhan",
"url": "https://twitter.com/ankit__chouhan"
},
{
"name": "Rishabh Tripathi",
"url": "https://twitter.com/ristripathi"
},
{
"name": "Rishav",
"url": "https://twitter.com/st_tronn"
},
{
"name": "Sarthak Srivastava",
"url": "https://twitter.com/Sarthak8898"
},
{
"name": "Samyak Jain",
"url": "https://twitter.com/__samyak"
},
{
"name": "Ganesh Hegde",
"url": "https://twitter.com/the_ganeshhegde"
},
{
"name": "Aditya Vandan Sharma",
"url": "https://twitter.com/AdityaVandan"
},
{
"name": "Akshay Kumar Barya",
"url": "https://twitter.com/akshay_barya"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Groww/ui-toolkit/issues"
},
"homepage": "https://github.com/Groww/ui-toolkit#readme",
"scripts": {
"prebuild": "rimraf dist",
"build": "concurrently npm:build:*",
"build:lib": "rollup -c",
"build:types": "tsc --emitDeclarationOnly",
"lint": "concurrently npm:lint:*",
"lint:src": "eslint src",
"lint:types": "tsc --noEmit",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"pushTags": "PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag -a v$PACKAGE_VERSION -m \"@groww-tech/ui-toolkit-v$PACKAGE_VERSION\" && git push --tags"
},
"peerDependencies": {
"classnames": "^2.2.6",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-lazyload": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-private-methods": "^7.13.0",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@groww-tech/base-css": "0.0.3",
"@groww-tech/eslint-config": "1.0.4",
"@groww-tech/eslint-plugin-internal": "1.0.2",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@stitches/react": "^1.2.7",
"@storybook/addon-actions": "^6.2.8",
"@storybook/addon-essentials": "^6.2.8",
"@storybook/addon-links": "^6.2.8",
"@storybook/react": "^6.2.8",
"@types/object-assign": "^4.0.30",
"@types/react-dom": "^17.0.3",
"@types/react-lazyload": "^3.1.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"classnames": "^2.2.6",
"concurrently": "^6.0.2",
"copyfiles": "^2.4.1",
"eslint": "^7.22.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.23.1",
"postcss": "^8.2.13",
"postcss-import": "^14.0.2",
"postcss-url": "^10.1.3",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-lazyload": "^2.6.9",
"rimraf": "^3.0.2",
"rollup": "^2.45.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript": "^1.0.1",
"typescript": "^4.2.4"
},
"dependencies": {
"@groww-tech/icon-store": "1.0.4",
"flat-carousel": "0.0.1",
"lodash.debounce": "^4.0.8",
"react-waypoint": "^10.1.0"
}
}