-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
126 lines (126 loc) · 3.57 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
{
"name": "react-awesome-shapes",
"description": "Insert Awesome Shapes into Your React Site with Ease.",
"homepage": "https://awesomeshapes.netlify.app",
"version": "0.1.12",
"private": false,
"main": "dist/index.js",
"module": "dist/index.js",
"license": "MIT",
"files": [
"dist",
"README.md"
],
"engines": {
"node": "^16.14.0",
"npm": "^8.3.1"
},
"author": "Ashutosh Hathidara <ashutoshhathidara98@gmail.com> (https://ashutoshhathidara.com/)",
"keywords": [
"react-shapes",
"react-awesome-shapes",
"shapes",
"circle",
"donut",
"ui-pack",
"best-react-package",
"components",
"ui"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ashutosh1919/react-awesome-shapes.git"
},
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mdx-js/react": "^1.6.22",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@theme-ui/presets": "^0.13.1",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.17",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/theme-ui": "^0.6.0",
"babel": "^6.23.0",
"clipboard": "^2.0.8",
"cross-env": "^7.0.3",
"framer-motion": "^5.5.6",
"polished": "^4.1.4",
"prism-react-renderer": "^1.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-live": "^3.0.0",
"react-responsive": "^9.0.0-beta.5",
"react-scripts": "5.0.0",
"react-tooltip": "^4.2.21",
"typescript": "^4.5.4",
"web-vitals": "^2.1.2"
},
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server",
"build-dev": "webpack --mode production",
"build": "rm -rf dist && tsc src/lib/*.tsx --jsx react-jsx --outDir dist --esModuleInterop true",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint --ignore-pattern '.build/*' './webpack.config.js' ./",
"lint:fix": "eslint --ignore-pattern '.build/*' './webpack.config.js' ./ --fix",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,json}' --config ./.prettierrc.json",
"prepare": "husky install"
},
"lint-staged": {
"*.{mjs,js,jsx,ts,tsx,json}": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && pretty-quick --staged"
}
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"all-contributors-cli": "^6.20.0",
"babel-loader": "^8.2.3",
"css-loader": "^6.6.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"fork-ts-checker-webpack-plugin": "^6.5.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.3",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"style-loader": "^3.3.1",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
}
}