-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
111 lines (111 loc) · 3.32 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "Cryptofiat",
"version": "0.0.2",
"description": "Cryptofiat",
"watch": {
"test": {
"patterns": [
"contracts",
"test"
],
"quiet": true,
"delay": 2500
}
},
"scripts": {
"lint": "eslint ./",
"dev": "webpack-dev-server",
"test": "truffle migrate --reset && truffle test",
"test-frontend": "mocha --recursive src/test/testRunner.js \"src/test/**/*.js\"",
"watch": "npm-watch",
"coverage": "./node_modules/.bin/solidity-coverage",
"testrpc": "./start_rpc.sh",
"test-computation-script": "mocha ./computation/test",
"bridge": "./start_bridge.sh",
"start": "node scripts/start.js",
"build": "node scripts/build.js"
},
"author": "Proofsuite",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "~6.26.0",
"babel-eslint": "^6.1.2",
"babel-loader": "~7.1.4",
"babel-plugin-transform-class-properties": "~6.24.1",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-env": "^1.1.8",
"babel-preset-es2015": "~6.24.1",
"babel-register": "^6.22.0",
"copy-webpack-plugin": "~4.5.1",
"css-loader": "^0.26.1",
"eslint": "^3.14.0",
"eslint-config-standard": "^6.0.0",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-mocha": "~4.12.1",
"eslint-plugin-promise": "~3.7.0",
"eslint-plugin-standard": "^2.0.0",
"html-webpack-plugin": "~2.29.0",
"json-loader": "^0.5.4",
"mocha": "~5.0.4",
"react-hot-loader": "~4.0.0",
"solidity-coverage": "~0.4.12",
"style-loader": "^0.13.1",
"truffle-contract": "^1.1.11",
"webpack": "~3.8.1",
"webpack-dev-server": "~2.9.7"
},
"dependencies": {
"@0xproject/subproviders": "~0.8.2",
"@digix/truffle-lightwallet-provider": "~0.1.4",
"accounting-js": "~1.1.1",
"antd": "~3.4.0",
"babel-polyfill": "~6.26.0",
"babel-preset-react": "~6.24.1",
"babel-preset-stage-3": "~6.24.1",
"babel-register": "~6.26.0",
"bignumber.js": "~6.0.0",
"case-sensitive-paths-webpack-plugin": "~1.1.4",
"catchify": "~2.6.1",
"chai": "~4.1.2",
"chai-as-promised": "~7.1.1",
"chai-bignumber": "~2.0.2",
"chai-stats": "~0.3.0",
"detect-port": "~1.2.2",
"dotenv": "~5.0.1",
"eslint-loader": "~2.0.0",
"eslint-plugin-react": "~7.7.0",
"ethers": "~3.0.9",
"extract-text-webpack-plugin": "~3.0.2",
"file-loader": "~1.1.11",
"js-sha3": "~0.7.0",
"moment": "~2.20.1",
"node-sass": "~4.8.2",
"npm-watch": "~0.3.0",
"postcss-flexbugs-fixes": "~3.3.0",
"postcss-loader": "~2.1.1",
"react": "~16.2.0",
"react-dev-utils": "~5.0.0",
"react-dom": "~16.2.0",
"react-dropzone": "~4.2.9",
"react-router": "~4.2.0",
"react-router-dom": "~4.2.2",
"react-router-redux": "~4.0.8",
"redux": "~3.7.2",
"redux-dynamic-middlewares": "~0.3.0",
"redux-logger": "~3.0.6",
"redux-thunk": "~2.2.0",
"remote-redux-devtools": "~0.5.12",
"remotedev-server": "~0.2.4",
"sass-loader": "~6.0.7",
"semantic-ui-css": "~2.3.0",
"semantic-ui-react": "~0.78.3",
"styled-components": "~3.2.5",
"url-loader": "~1.0.1",
"web3": "~1.0.0-beta.34",
"web3-provider-engine": "~13.6.6",
"webpack-html-plugin": "~0.1.1",
"webpack-manifest-plugin": "~1.1.2",
"why-did-you-update": "~0.1.1"
}
}