-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·37 lines (37 loc) · 1.05 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
{
"name": "proviz",
"version": "1.0.0",
"description": "",
"main": "index.js",
"homepage": "https://misterspex.github.io/ProViz",
"scripts": {
"start": "webpack-dev-server --mode development --open --hot",
"build": "webpack --mode production",
"predeploy": "npm run build",
"deploy": "gh-pages -d bundle"
},
"author": "andre neubauer (@devpg)",
"license": "ISC",
"dependencies": {
"@material-ui/core": "^3.3.1",
"@material-ui/icons": "^3.0.1",
"@material-ui/lab": "^3.0.0-alpha.23",
"gh-pages": "^2.0.1",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-router-dom": "^4.3.1",
"typeface-roboto": "0.0.54",
"universal-cookie": "^3.0.4",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.3.1"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.0",
"babel-loader": "^8.0.4",
"webpack": "^4.23.1"
}
}