-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
74 lines (74 loc) · 2.49 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
{
"name": "decentrapay",
"version": "1.0.1",
"description": "Stablecoin payment processor",
"scripts": {
"test": "mocha --compilers js:@babel/register --timeout 20000 test/test.js",
"wallets": "./node_modules/.bin/babel-node ./src/scripts/wallets.js",
"watch": "webpack --config ./tools/app.webpack.config.js --mode development --watch",
"devserver": "$(npm bin)/nodemon -w ./dist ./dist/server",
"dev": "webpack --config ./tools/app.webpack.config.js --mode development && npm-run-all --parallel watch devserver",
"build": "NODE_ENV=production webpack --config ./tools/app.webpack.config.js --mode production --verbose",
"build-scripts": "NODE_ENV=production ./node_modules/.bin/webpack --config ./tools/scripts.webpack.config.js",
"start": "NODE_ENV=production node ./dist/server"
},
"author": "",
"license": "mit",
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/node": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.4",
"@babel/plugin-transform-react-jsx": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/register": "^7.10.4",
"babel-loader": "^8.1.0",
"html-webpack-plugin": "^3.2.0",
"html-webpack-template": "^6.2.0",
"koa-static": "^5.0.0",
"koa-webpack": "^5.3.0",
"mini-css-extract-plugin": "^0.5.0",
"mkdirp": "^0.5.5",
"mocha": "^5.2.0",
"node-sass": "^4.14.1",
"nodemon": "^1.19.4",
"npm-run-all": "^4.1.5",
"sass-loader": "^9.0.1",
"solc": "^0.5.17",
"supertest": "^3.4.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"@babel/runtime": "^7.10.4",
"@hyperapp/router": "^0.7.1",
"@hyperapp/time": "0.0.10",
"@mrbarrysoftware/hyperapp-router": "0.0.1-beta.8",
"bignumber.js": "^8.0.1",
"bulma": "^0.9.0",
"bulmaswatch": "^0.8.1",
"command-line-args": "^5.0.2",
"config": "^3.3.1",
"cson": "^5.1.0",
"css-loader": "^2.1.0",
"ethers": "^4.0.47",
"gasless": "^1.0.3",
"hyperapp": "^2.0.4",
"koa": "^2.13.0",
"koa-bodyparser": "^4.3.0",
"koa-logger": "^3.2.1",
"koa-mount": "^4.0.0",
"koa-router": "^9.1.0",
"mongoose": "^5.9.21",
"pouchdb": "^7.2.1",
"pouchdb-adapter-node-websql": "^7.0.0",
"pouchdb-find": "^7.2.1",
"qrcode": "^1.3.3",
"request": "^2.88.2",
"shortid": "^2.2.14",
"web3": "^1.2.11",
"xhr2": "^0.2.0"
}
}