-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.54 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
{
"name": "esducad-ui",
"version": "1.0.0",
"description": "A web development ui kit library for React.Js by emresandikci",
"main": "dist/index.js",
"author": "emresandikci <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"start": "start-storybook --docs -p 1992",
"build": "yarn clean && yarn build:icon && yarn format && yarn transpile",
"build:doc": "build-storybook --docs -c .storybook -o .out",
"build:icon": "yarn svgr ./src/static/icons -d ./src/icons --svgo-config .svgorc.json",
"transpile": "babel src/ -d dist/ --ignore src/**/*.story.js,src/static/icons/*",
"clean": "rimraf ./dist",
"format": "prettier --write \"src/**/*.{js,jsx,css,json}\"",
"lint": "eslint src",
"lint:fix": "yarn lint --fix",
"validate": "yarn prettier --check \"src/**/*.{js,jsx,css,json}\" && yarn lint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"src/**/!(*story).js": [
"yarn format",
"yarn lint:fix",
"yarn validate"
]
},
"dependencies": {
"@styled-system/prop-types": "^5.1.5",
"prop-types": "^15.7.2",
"styled-system": "^5.1.5"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@storybook/addon-actions": "^5.3.17",
"@storybook/addon-docs": "^5.3.17",
"@storybook/addon-links": "^5.3.17",
"@storybook/addons": "^5.3.17",
"@storybook/react": "^5.3.17",
"@svgr/cli": "^5.3.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.0.6",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-styled-components": "^1.10.7",
"babel-preset-minify": "^0.5.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"husky": "^4.2.5",
"lint-staged": "^10.1.7",
"prettier": "2.0.5",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"rimraf": "^3.0.2",
"styled-components": "^5.0.1"
},
"keywords": [
"ui",
"ui-kit",
"component",
"components",
"design",
"css",
"framework",
"frontend",
"react",
"react-component",
"styled-component",
"styled-system",
"esducad",
"esducad-ui"
]
}