-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
42 lines (42 loc) · 1 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
{
"name": "one-click-dapp",
"version": "0.0.1",
"description": "A simple Node app with SQLite as a database management system, instantly up and running.",
"main": "server.js",
"scripts": {
"start": "concurrently \"npm run server\" \"npm run client\" ",
"server": "node server.js",
"client": "node start-client.js",
"start-production": "npm run build-client && NODE_ENV=production node server",
"build-client": "cd client && npm run build && cd .."
},
"dependencies": {
"body-parser": "^1.18.3",
"eth-registry": "^1.1.8",
"express": "^4.16.3",
"fs": "0.0.2",
"lodash": "^4.17.10",
"mngen": "^1.1.0",
"mocha": "^5.2.0",
"moment": "^2.22.2",
"mongodb": "^2.2.36",
"mongoose": "^5.2.4",
"s3": "^4.4.0",
"web3": "^1.0.0-beta.36"
},
"devDependencies": {
"concurrently": "3.1.0"
},
"engines": {
"node": "8.x"
},
"repository": {
"url": ""
},
"license": "MIT",
"keywords": [
"node",
"glitch",
"express"
]
}