-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.82 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
{
"name": "blockstreet-api",
"version": "0.0.3",
"description": "The backend API and services that power the Blockstreet web application.",
"main": "server.js",
"scripts": {
"start": "babel-node ./application/server.js",
"start:production": "set NODE_ENV=production&& npm run start",
"watch": "babel-watch ./application/server.js",
"watch:development": "set NODE_ENV=development&& npm run watch",
"watch:staging": "set NODE_ENV=staging&& npm run watch",
"watch:production": "set NODE_ENV=production&& npm run watch",
"postinstall": "node ./build/config.js"
},
"contributors": [
"Nick Lombardi <nkmlombardi@gmail.com>",
"Josh Semedo <joshsemedo@gmail.com"
],
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-watch": "^2.0.7"
},
"dependencies": {
"async-redis": "^1.0.0",
"axios": "^0.16.2",
"bcryptjs": "^2.4.3",
"bluebird": "^3.4.7",
"body-parser": "^1.17.2",
"coinmarketcap": "^0.2.0",
"coinmarketcap-fetch": "git+https://github.com/nkmlombardi/coinmarketcap.git",
"colors": "^1.1.2",
"config": "^1.26.1",
"cors": "^2.8.4",
"cryptocompare": "git+https://github.com/nkmlombardi/cryptocompare.git",
"dotenv": "^4.0.0",
"express": "^4.14.1",
"helmet": "~1.1.0",
"influx": "^5.0.7",
"moment": "^2.18.1",
"morgan": "~1.6.1",
"node-fetch": "^1.7.1",
"pg": "^6.4.1",
"response-time": "^2.3.2",
"sequelize": "^4.3.2",
"sequelize-import": "^1.2.1",
"showdown": "^1.6.4",
"winston": "^2.3.1"
}
}