forked from ZeppelinSolutions/token-marketplace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.88 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "token-marketplace",
"version": "1.0.0",
"description": "Token Marketplace",
"main": "app.js",
"author": "facuspagnuolo",
"license": "MIT",
"repository": "git@github.com:facuspagnuolo/token-marketplace.git",
"scripts": {
"test": "truffle test",
"console": "truffle console",
"start": "webpack-dev-server --config webpack.dev.js --hot --history-api-fallback",
"build": "webpack --config webpack.prod.js",
"deploy": "npm run build && firebase deploy"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"bignumber.js": "^4.0.4",
"materialize-css": "^0.99.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"truffle-contract": "^2.0.5",
"web3": "~0.20.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babelify": "~7.3.0",
"browserify": "~14.3.0",
"chai": "^4.1.1",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.1",
"clean-webpack-plugin": "^0.1.16",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.5",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.30.1",
"jquery": "^3.2.1",
"materialize-loader": "^2.0.1",
"mocha": "^3.5.0",
"node-sass": "^4.5.3",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"truffle": "^3.4.8",
"truffle-contract": "^2.0.5",
"url-loader": "^0.5.9",
"watchify": "~3.9.0",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1",
"webpack-merge": "^4.1.0",
"zeppelin-solidity": "^1.2.0"
}
}