-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 2.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
{
"name": "my-dapp",
"version": "0.1.0",
"description": "Dapp scaffolding created with DappStarter",
"directories": {
"test": "test"
},
"license": "MIT",
"scripts": {
"start": "npm run deploy && npm run dapp",
"dapp": "npm run lib && webpack-dev-server --mode development --config webpack.config.dapp.js",
"server": "rm -rf ./build/server && npm run lib && webpack --mode development --config webpack.config.server.js",
"lib": "webpack --mode development --config webpack.config.lib.js",
"dapp:prod": "npm run lib:prod && webpack --mode production --config webpack.config.dapp.js",
"server:prod": "rm -rf ./build/server && npm run lib:prod && webpack --mode production --config webpack.config.server.js",
"lib:prod": "webpack --mode production --config webpack.config.lib.js",
"deploy": "npx truffle compile && npx truffle migrate --reset",
"deploy-verbose": "npx truffle compile && npx truffle migrate --reset --verbose-rpc",
"test": "npx truffle test"
},
"authors": [
"Nik Kalyani <[email protected]> https://www.trycrypto.com"
],
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/polyfill": "^7.7.0",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.8.3",
"@babel/register": "^7.8.3",
"@grubersjoe/slide-menu": "1.2.3",
"babel-loader": "^8.0.6",
"@uppy/core": "^1.7.1",
"@uppy/dashboard": "^1.5.2",
"bn-chai": "1.0.1",
"bn.js": "5.0.0",
"clipboard": "2.0.4",
"css-loader": "^1.0.0",
"express": "4.16.4",
"favicons-webpack-plugin": "^2.1.0",
"file-loader": "3.0.1",
"glob": "^7.1.6",
"html-loader": "0.5.5",
"html-webpack-plugin": "^3.2.0",
"start-server-webpack-plugin": "2.2.5",
"style-loader": "^0.23.1",
"webpack": "^4.6.0",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.1.14",
"webpack-node-externals": "^1.7.2",
"@truffle/hdwallet-provider": "1.0.32",
"web3": "1.2.6",
"mdbootstrap": "^4.14.0",
"@fortawesome/fontawesome-free": "^5.11.2",
"bootstrap-css-only": "^4.3.1"
},
"dependencies": {}
}