-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.93 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "truffle_boilerplate",
"version": "0.0.1",
"description": "Frontend with tested contracts using webpack",
"scripts": {
"build": "webpack",
"clean": "rm -rf .node-xml* node_modules",
"ipfs": "bash infra/ipfs/run.sh",
"logs-ipfs": "docker logs ipfs --follow",
"start": "webpack-dev-server --host 0.0.0.0 --port 3000 --hot --inline",
"test": "npm-run-all --parallel test-*",
"test-contracts": "truffle test",
"test-utils": "env NODE_ENV=test mocha --compilers js:babel-register --require spec/utils/init.js spec/utils/**/*.spec.js",
"testrpc": "babel-watch infra/testrpc/index.js"
},
"author": "Frederick Lindsey",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.10",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-env": "^1.1.8",
"babel-preset-latest": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.23.0",
"babel-watch": "^2.0.6",
"body-parser": "^1.17.0",
"bootstrap": "3.3.7",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"concat-stream": "^1.6.0",
"copy-webpack-plugin": "^4.0.1",
"create-react-class": "^15.5.3",
"css-loader": "^0.26.1",
"elliptic": "^6.4.0",
"eslint": "^3.14.0",
"eslint-config-standard": "^6.0.0",
"eslint-loader": "^1.6.3",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-mocha": "^4.8.0",
"eslint-plugin-promise": "^3.0.0",
"eslint-plugin-react": "^6.10.0",
"eslint-plugin-standard": "^2.0.0",
"ethereumjs-testrpc": "^3.0.5",
"expose-loader": "^0.7.3",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.28.0",
"ipfs-api": "^14.0.1",
"jquery": "^3.2.1",
"json-loader": "^0.5.4",
"keccak": "^1.2.0",
"localforage": "^1.5.0",
"mocha": "^3.2.0",
"morgan": "^1.8.1",
"node-forge": "^0.7.1",
"node-sass": "^4.5.0",
"npm-run-all": "^4.0.2",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-dropdown": "^1.2.1",
"react-dropzone": "^3.11.0",
"react-hot-loader": "3.0.0-beta.7",
"react-redux": "^5.0.3",
"react-router-dom": "^4.1.1",
"react-select": "^1.0.0-rc.3",
"redux": "^3.7.0",
"redux-action-buffer": "^1.1.0",
"redux-logger": "^2.8.1",
"redux-persist": "^4.8.1",
"redux-thunk": "^2.2.0",
"rsa-proxy-reencrypt": "^0.0.2",
"sass-loader": "^6.0.2",
"style-loader": "^0.13.1",
"superagent": "^3.5.2",
"through2": "^2.0.3",
"toastr": "^2.1.2",
"truffle": "^3.2.4",
"truffle-contract": "^1.1.6",
"truffle-solidity-loader": "git+https://github.com/sogoiii/truffle-solidity-loader.git#16e6c925e6aba4e3907b9d8d2cae43ff279be84b",
"underscore": "^1.8.3",
"url-loader": "^0.5.9",
"web3": "^0.18.2",
"webpack": "2.2.1",
"webpack-dev-server": "^2.4.1"
}
}