This repository has been archived by the owner on Sep 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.66 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
{
"author": "Yonas Adiel <[email protected]> (https://yonasadiel.com)",
"name": "react-hephaestus",
"description": "UI Toolkit for React web apps",
"version": "0.2.0",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/yonasadiel/react-hephaestus.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "Apache-2.0",
"homepage": "https://hephaestus.yonasadiel.com",
"keywords": [
"react",
"ui",
"components"
],
"peerDependencies": {
"react": "^16.7.0"
},
"scripts": {
"build": "webpack --config ./webpack.config.js",
"build:storybook": "build-storybook",
"storybook": "start-storybook -p 6006"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@storybook/preset-typescript": "^2.1.0",
"@storybook/react": "^5.3.14",
"@types/classnames": "^2.2.10",
"@types/node": "^13.9.0",
"@types/react": "^16.7.0",
"autoprefixer": "^9.7.4",
"babel-loader": "^8.0.6",
"babel-preset-react-app": "^9.1.1",
"classnames": "^2.2.6",
"css-loader": "^3.4.2",
"cssnano": "^4.1.10",
"fork-ts-checker-webpack-plugin": "^4.0.5",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"postcss-loader": "^3.0.0",
"sass-loader": "^8.0.2",
"ts-loader": "^6.2.1",
"typescript": "^3.8.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {}
}