-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
64 lines (64 loc) · 1.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
{
"name": "on-chain-chess",
"version": "0.0.1",
"description": "Chess as a Ethereum (Solidity) smart contract decentralized app",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --content-base static/",
"build": "webpack --bail",
"build-production": "webpack --bail --config webpack.config-production.js",
"test": "mocha-webpack --growl",
"test-testrpc": "concurrently --kill-others -s first \"testrpc -p ${TESTRPC_PORT:-8545}\" 'npm run test'",
"lint": "jshint app/javascript/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/ise-ethereum/on-chain-chess"
},
"keywords": [
"webpack",
"decentralized app",
"decentralization",
"ethereum",
"solidity",
"dapp",
"template"
],
"bugs": {
"url": "https://github.com/ise-ethereum/on-chain-chess"
},
"author": "TU Berlin, ISE Ethereum, PSA group",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.9.1",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"chai": "*",
"concurrently": "*",
"css-loader": "^0.23.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"jshint": "^2.9.2",
"jshint-loader": "^0.8.3",
"json-loader": "^0.5.4",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"mocha": "*",
"mocha-webpack": "*",
"solc": "^0.3.4",
"solc-loader": "git://github.com/Antanukas/solc-loader.git#97ef68cf30a69f43d16953c28a1b44fa14d5ed38",
"source-map-support": "*",
"style-loader": "^0.13.1",
"web3": "^0.15.3",
"web3-loader": "git://github.com/Antanukas/web3-loader.git#af4e4ad57fb409360aa5c72866e31be230a2b162",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1",
"webpack-node-externals": "*"
},
"dependencies": {
"async": "^1.5.2",
"bignumber.js": "^2.3.0",
"chess.js": "^0.10.2",
"web3-shh-dropin-for-proxy": "github:ise-ethereum/web3-shh-dropin-for-proxy"
}
}