-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
74 lines (74 loc) · 2.01 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": "scatter-api",
"version": "1.0.0",
"description": "Scatter API Service",
"repository": {
"type": "git",
"url": "git+https://github.com/GetScatter/scatter-api.git"
},
"author": "Nathan James",
"license": "MIT",
"main": "dist/index.js",
"engines": {
"node": "~6.9.1",
"npm": ">=3.10.0"
},
"scripts": {
"prod": "node dist/index.js",
"start": "nodemon src/index.js --exec \"node -r dotenv/config -r @babel/register\"",
"clean": "rimraf dist",
"build": "npm run clean && mkdir -p dist && babel src -s -D -d dist",
"testfile": "mocha --require @babel/register --exit --timeout 1000000",
"test": "npm run testfile \"test/**/*.spec.js\" --timeout 1000000",
"crash": "kill-port 6544"
},
"dependencies": {
"@babel/runtime": "^7.5.4",
"aes-oop": "^1.0.4",
"blockchain.info": "^2.12.1",
"bluebird": "^3.5.3",
"body-parser": "^1.18.2",
"compression": "^1.7.3",
"cors": "^2.8.4",
"couchbase": "^3.0.6",
"create-hash": "^1.2.0",
"eosjs": "^20.0.0",
"eosjs-ecc": "^4.0.4",
"es6-promise": "^4.2.5",
"express": "^4.16.4",
"get-random-values": "^1.2.0",
"isomorphic-fetch": "^2.2.1",
"morgan": "^1.9.1",
"murmurhash": "0.0.2",
"rimraf": "^2.6.2",
"universal-analytics": "^0.4.20",
"uuid": "^3.3.2",
"ws": "^7.2.1"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/node": "^7.5.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"@babel/register": "^7.4.4",
"chai": "^4.2.0",
"dotenv": "^4.0.0",
"kill-port": "^1.3.2",
"killport": "^1.0.1",
"mocha": "^5.2.0",
"nodemon": "^1.12.1",
"supertest": "^3.0.0"
},
"resolutions": {
"**/lodash": "^4.17.12"
},
"bugs": {
"url": "https://github.com/vmasto/express-babel/issues"
},
"homepage": "https://github.com/vmasto/express-babel#readme",
"directories": {
"test": "test"
}
}