-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 733 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 733 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
{
"name": "ui-kit",
"version": "1.0.0",
"scripts": {
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"start": "webpack-dev-server --open --mode development",
"start:live": "webpack-dev-server --open --mode development --liveReload"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "7.9.6",
"@babel/preset-env": "7.11.5",
"@babel/preset-react": "7.9.4",
"babel-loader": "8.1.0",
"html-webpack-plugin": "git://github.com/ScriptedAlchemy/html-webpack-plugin#db1e0cb",
"webpack": "5.0.0-beta.29",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.0"
},
"dependencies": {
"react": "16.13.1",
"react-dom": "^16.13.1"
}
}