[READ-ONLY] Mirror of https://github.com/probablykasper/cryp. Cryptocurrency portfolio tracker (unfinished)
0

Configure Feed

Select the types of activity you want to include in your feed.

cryp / web / package.json
1.3 kB 46 lines
1{ 2 "name": "cryp", 3 "version": "1.0.0", 4 "description": "cryp website", 5 "author": "KH kasperkh.kh@gmail.com", 6 "main": "server.js", 7 8 "scripts": { 9 "build-dev": "webpack --config webpack.config.js --watch", 10 "start-dev": "nodemon server.js", 11 "dev": "npm-run-all --parallel build-dev start-dev", 12 13 "build-production": "webpack --config webpack.config.js", 14 "start-production": "node server.js", 15 "production": "npm-run-all build-production start-production" 16 }, 17 "dependencies": { 18 "webpack": "3.10.x", 19 "node-sass": "4.7.x", 20 "extract-text-webpack-plugin": "3.0.x", 21 "css-loader": "0.28.x", 22 "sass-loader": "6.0.x", 23 "babel-loader": "7.1.x", 24 "babel-register": "6.26.x", 25 "babel-preset-env": "1.6.x", 26 27 "node-fetch": "2.0.x", 28 "cryptocompare": "0.4.x", 29 "big.js": "5.0.x", 30 "ccxt": "1.10.x", 31 32 "express": "4.16.x", 33 "redirect-https": "1.1.x", 34 "pug": "~2.0.0-rc.4", 35 "body-parser": "1.18.x", 36 37 "redirect-https": "1.1.x", 38 39 "passport": "0.4.x", 40 "passport-google-oauth": "1.0.x", 41 "express-session": "1.15.x", 42 "connect-mongo": "2.0.x", 43 44 "mongoose": "~5.0.0-rc0" 45 } 46}