-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 965 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 965 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
{
"name": "grafolean-simple-widget",
"version": "0.0.1",
"description": "Example widget plugin for Grafolean",
"main": "dist/main.js",
"repository": "https://github.com/grafolean/grafolean-simple-widget/",
"private": true,
"scripts": {
"start": "webpack --mode development --watch",
"build": "webpack --mode production",
"prettier": "prettier --write \"src/**/*.{js,json}\""
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"babel-loader": "^8.0.6",
"css-loader": "^3.4.0",
"lint": "^0.7.0",
"node-sass": "^4.13.0",
"prettier": "^2.0.5",
"react": "^16.8",
"react-dom": "^16.8",
"sass-loader": "^8.0.0",
"style-loader": "^1.1.1",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.10"
},
"peerDependencies": {
"react": "^16.8",
"react-dom": "^16.8"
}
}