-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.45 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
{
"name": "dcex",
"version": "1.0.0",
"scripts": {
"dev": "NODE_ENV=development node -r dotenv/config server.js",
"dev:watch": "NODE_ENV=development nodemon -x 'npm run dev'",
"worker": "NODE_ENV=development node -r panik -r dotenv/config worker.js",
"schema": "psql $DATABASE_URL --single-transaction -v ON_ERROR_STOP=on -f schema.sql",
"schema:watch": "nodemon -e sql -x 'npm run schema'",
"worker:watch": "NODE_ENV=development nodemon -e sql,js,json -x 'npm run worker'",
"heroku-postbuild": "next build && npm run schema",
"build": "next build",
"start": "node server.js"
},
"dependencies": {
"apollo-boost": "^0.1.16",
"bcoin": "github:abrkn/bcoin#1a14218916db9484bbc50f644ebc96e99767188c",
"bitcoin": "3.0.1",
"bluebird": "3.5.2",
"bstring": "0.3.0",
"delay": "4.1.0",
"dotenv": "6.1.0",
"express": "4.16.4",
"isomorphic-unfetch": "^3.0.0",
"lodash": "4.17.11",
"next": "7.0.2",
"next-images": "1.0.1",
"next-routes": "1.4.2",
"npm-run-all": "4.1.3",
"p-map": "2.0.0",
"p-memoize": "2.1.0",
"p-memoize-redis": "1.2.0",
"panik": "1.0.1",
"pg-promise": "8.5.0",
"postgraphile": "4.0.1",
"prop-types": "^15.6.2",
"react": "16.5.2",
"react-apollo": "^2.1.11",
"react-dom": "16.5.2",
"redis": "2.8.0",
"safep": "1.2.6"
},
"engines": {
"node": ">=9"
},
"author": "Andreas Brekken <andreas@brekken.com>",
"license": "ISC"
}