-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 796 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 796 Bytes
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
{
"name": "my-webpack-widget",
"version": "1.0.0",
"description": "My Webpack Widget",
"main": "dist/index.js",
"files": [
"./dist"
],
"scripts": {
"build:umd": "webpack --config config/umd.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"react": "^16.6.0",
"react-dom": "^16.6.0"
},
"peerDependencies": {
"react": "16.x",
"react-dom": "16.x"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.4",
"path": "^0.12.7",
"webpack": "^4.19.1",
"webpack-cli": "^3.1.0"
}
}