-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.02 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.02 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "place-eth",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=development ./node_modules/.bin/webpack-dev-server --host 0.0.0.0 --client-log-level info --progress --hot --config webpack.config.js",
"build": "NODE_ENV=production ./node_modules/.bin/webpack -p",
"debug": "./node_modules/.bin/truffle debug",
"migrate": "./node_modules/.bin/truffle migrate",
"test": "./node_modules/.bin/truffle test --network development",
"ganache": "./node_modules/.bin/ganache-cli -d --hostname 127.0.0.1 -p 8545 -i 123456789"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/polyfill": "^7.0.0-beta.51",
"bignumber.js": "git+https://github.com/frozeman/bignumber.js-nolookahead.git",
"ethjs": "^0.4.0",
"ganache-cli": "^6.1.4",
"left-pad": "^1.3.0",
"minimist": "^1.2.0",
"moment": "^2.22.2",
"normalize-wheel": "^1.0.1",
"openzeppelin-solidity": "1.12.0-rc.2",
"prompt-confirm": "^2.0.4",
"querystring": "^0.2.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-dropzone": "^4.2.13",
"react-hotkeys": "^1.1.4",
"react-modal": "^3.5.1",
"recompose": "^0.27.1",
"truffle": "^4.1.13",
"truffle-contract": "^3.0.6",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.51",
"@babel/core": "^7.0.0-beta.51",
"@babel/preset-env": "^7.0.0-beta.51",
"@babel/preset-react": "^7.0.0-beta.51",
"@babel/preset-stage-0": "^7.0.0-beta.51",
"babel-loader": "^8.0.0-beta.4",
"babel-plugin-transform-react-remove-prop-types": "^0.4.13",
"case-sensitive-paths-webpack-plugin": "^2.1.2",
"classnames": "^2.2.6",
"css-loader": "^0.28.11",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"prop-types": "^15.6.2",
"react-hot-loader": "^4.3.3",
"style-loader": "^0.21.0",
"truffle-hdwallet-provider": "0.0.5",
"webpack": "^4.14.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4"
}
}