-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.57 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
{
"name": "common-hosting-dapp",
"version": "0.0.1",
"description": "The web interface for the common hosting contract",
"main": "index.js",
"scripts": {
"clean": "rm -rf build && rm -f static/index.html",
"prebuild": "true",
"build": "npm run clean && npm run prebuild && webpack",
"build:production": "npm run clean && npm run prebuild && webpack --config webpack.prod.js",
"deploy": "npm run build:production && node scripts/dns-update.js",
"dev": "npm run prebuild && webpack-dev-server --config webpack.config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"mobx": "^5.5.1",
"mobx-react": "^5.3.2",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-router-dom": "^4.3.1",
"styled-components": "^4.0.2",
"web3": "^1.0.0-beta.36"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@types/react": "^16.4.18",
"@types/react-dom": "^16.0.9",
"@types/react-router-dom": "^4.3.1",
"@types/styled-components": "^4.0.1",
"babel-loader": "^8.0.4",
"html-webpack-harddisk-plugin": "^1.0.0",
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "^3.2.0",
"typescript": "^3.1.3",
"webpack": "^4.21.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9"
},
"author": "Chance Hudson",
"license": "MIT"
}