-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.71 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
{
"name": "react-codepen-prefill",
"version": "0.3.0",
"description": "React component to create a button/link to prefill codepen.io with supplied code",
"main": "lib/index.js",
"scripts": {
"lib": "babel src/lib -d lib",
"lib:watch": "babel src/lib -w -d lib",
"lib:lint": "./node_modules/.bin/eslint src/lib/*.jsx --fix --config .eslintrc.json",
"docs": "webpack serve --config webpack.config.js --progress",
"docs:prod": "webpack --config webpack.config.js --progress"
},
"keywords": [
"react",
"codepen",
"prefill",
"fill",
"open"
],
"license": "MIT",
"peerDependencies": {
"react": "^15.3.0 || ^16.8.0",
"react-dom": "^15.3.0 || ^16.8.0"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"babel-loader": "^8.1.0",
"babel-plugin-transform-strict-mode": "^6.24.1",
"css-loader": "^5.2.4",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"html-webpack-plugin": "^5.3.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-highlight": "^0.14.0",
"style-loader": "^2.0.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
},
"author": "Ron Ilan <[email protected]>",
"homepage": "https://github.com/ronilan/react-codepen-prefill",
"repository": {
"type": "git",
"url": "[email protected]:ronilan/react-codepen-prefill.git"
},
"dependencies": {
"prop-types": "^15.7.2"
}
}