-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 3.37 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
{
"name": "dexon-lottery",
"version": "0.0.1",
"license": "MIT",
"description": "Random number generator for DEXON lottery event",
"homepage": "https://dexon.org",
"repository": {
"type": "git",
"url": "https://github.com/dexon-foundation/dexon-lottery.git"
},
"scripts": {
"postinstall": "touch secret.js",
"build": "rm -rf build/ && npm run contract:compile && npm run webapp:build",
"webapp:dev": "webpack-dev-server --config internals/webpack/webpack.dev.babel.js --mode development --host 0.0.0.0",
"webapp:build": "NODE_ENV=production webpack --config internals/webpack/webpack.prod.babel.js --color -p --progress --hide-modules --display-optimization-bailout",
"contract:compile": "dexon-truffle compile",
"contract:test": "dexon-truffle test",
"contract:deploy": "dexon-truffle migrate --network=testnet --reset",
"contract:run": "node ./runTimer.js"
},
"dependencies": {
"@cobinhood/eslint-config-cobinhood": "^0.2.0",
"@cobinhood/web3": "1.0.0-beta.35",
"@dexon-foundation/truffle": "^5.0.15",
"@dexon-foundation/truffle-contract": "^4.0.12",
"@google-cloud/logging-bunyan": "^0.10.1",
"add-asset-html-webpack-plugin": "^3.1.3",
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-eslint": "8.2.3",
"babel-loader": "7.1.4",
"babel-plugin-dynamic-import-node": "1.2.0",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-polished": "^1.1.0",
"babel-plugin-react-intl": "2.4.0",
"babel-plugin-react-transform": "3.0.0",
"babel-plugin-styled-components": "1.5.1",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.2",
"babel-plugin-transform-react-constant-elements": "6.23.0",
"babel-plugin-transform-react-inline-elements": "6.22.0",
"babel-plugin-transform-react-jsx-source": "6.22.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.13",
"babel-polyfill": "6.26.0",
"babel-preset-env": "1.7.0",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"bip39": "^3.0.0",
"bunyan": "^1.8.12",
"circular-dependency-plugin": "^5.0.2",
"css-loader": "0.28.11",
"eslint": "4.19.1",
"eslint-config-airbnb": "16.1.0",
"eslint-config-airbnb-base": "12.1.0",
"eslint-import-resolver-babel-module": "^4.0.0",
"eslint-import-resolver-webpack": "0.10.0",
"eslint-plugin-compat": "^2.4.0",
"eslint-plugin-flowtype": "^2.46.3",
"eslint-plugin-import": "2.12.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-react": "7.9.1",
"eslint-plugin-react-hooks": "^1.0.1",
"ethereumjs-wallet": "^0.6.3",
"eventsource-polyfill": "^0.9.6",
"file-loader": "1.1.11",
"fontfaceobserver": "2.0.13",
"glob": "^7.1.3",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"moment": "^2.24.0",
"openzeppelin-solidity": "^2.1.3",
"polished": "^3.0.3",
"prop-types": "^15.6.1",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-inlinesvg": "^0.8.1",
"react-intl": "2.4.0",
"react-loadable": "5.4.0",
"react-typing-effect": "^2.0.2",
"sanitize.css": "4.1.0",
"style-loader": "0.21.0",
"styled-components": "3.3.2",
"truffle-hdwallet-provider": "^1.0.1",
"webpack": "^4.29.6",
"webpack-dev-server": "^3.2.1",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"webpack-cli": "^3.3.0"
}
}