From c1c059953f45b3610176a91c5c3147fdd41f58a2 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Sat, 14 May 2016 22:16:05 -0600 Subject: [PATCH] Start the frontend package This is just based on npm init --- package.json | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 0000000..980fa64 --- /dev/null +++ b/package.json @@ -0,0 +1,31 @@ +{ + "name": "vanth", + "version": "1.0.0", + "description": "For tracking expenses", + "main": "main.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/EliRibble/vanth.git" + }, + "keywords": [ + "expenses", + "budget" + ], + "author": "Eli Ribble", + "license": "AGPL-3.0", + "bugs": { + "url": "https://github.com/EliRibble/vanth/issues" + }, + "homepage": "https://github.com/EliRibble/vanth#readme", + "dependencies": { + "react": "^15.0.2", + "react-redux": "^4.4.5", + "redux": "^3.5.2" + }, + "directories": { + "test": "tests" + } +}