-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
130 lines (130 loc) · 3.6 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
128
129
130
{
"name": "chic-ui",
"version": "1.0.15",
"description": "🎨 Lightweight opinionated UI Component Library for React",
"license": "MIT",
"main": "./lib/index.js",
"directories": {
"lib": "lib"
},
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/karishmashuklaa/chic-ui",
"repository": {
"type": "git",
"url": "https://github.com/karishmashuklaa/chic-ui.git"
},
"bugs": {
"url": "https://github.com/karishmashuklaa/chic-ui/issues",
"email": "karishmashuklaa@gmail.com"
},
"keywords": [
"react",
"react-ui",
"library",
"react-library",
"chic-ui",
"ui-library",
"styled-components",
"css-in-js"
],
"author": "Karishma Shukla(https://github.com/karishmashuklaa)",
"dependencies": {
"final-form": "^4.20.7",
"react-final-form": "^6.5.9",
"styled-components": "^5.3.1",
"validator": "^13.7.0"
},
"scripts": {
"build": "tsc --build \"./tsconfig.json\"",
"build:storybook": "storybook build -s public",
"lint": "eslint --ignore-path .gitignore --ext .ts,.tsx .",
"prettier": "prettier \"**/*.+(js|json|ts|tsx)\"",
"format": "npm run prettier -- --write",
"check-format": "npm run prettier -- --list-different",
"validate": "npm run check-format && npm run lint && npm run build",
"clean": "rm -rf ./lib",
"test": "react-scripts test",
"eject": "react-scripts eject",
"storybook": "storybook dev -p 6006 -s public",
"prebuild": "npm run compile-icons",
"prepublish": "npm run build",
"build-storybook": "storybook build -s public",
"compile-icons": "npx @svgr/cli -d src/icons src/icons --typescript"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"peerDependencies": {
"react": ">=17.0.2",
"react-dom": ">=17.0.2"
},
"devDependencies": {
"@babel/preset-env": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@storybook/addon-actions": "^7.0.18",
"@storybook/addon-docs": "^7.0.18",
"@storybook/addon-essentials": "^7.0.18",
"@storybook/node-logger": "^7.0.18",
"@storybook/preset-create-react-app": "^7.0.18",
"@storybook/react": "^7.0.18",
"@storybook/react-webpack5": "^7.0.18",
"@svgr/cli": "^5.5.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"@types/jest": "^26.0.24",
"@types/node": "^12.20.21",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"@types/react-test-renderer": "^17.0.1",
"@types/styled-components": "^5.1.13",
"@types/validator": "^13.7.1",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-only-warn": "^1.0.3",
"eslint-plugin-react": "^7.26.1",
"prettier": "^2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-refresh": "^0.14.0",
"react-scripts": "^5.0.1",
"react-test-renderer": "^17.0.2",
"storybook": "^7.0.18",
"typescript": "^4.4.2",
"web-vitals": "^1.1.2",
"webpack": "^5.75.0"
}
}