Ver código fonte

init project

mightyplow 5 anos atrás
commit
ebb7d84267
3 arquivos alterados com 7356 adições e 0 exclusões
  1. 2 0
      .gitignore
  2. 7326 0
      package-lock.json
  3. 28 0
      package.json

+ 2 - 0
.gitignore

@@ -0,0 +1,2 @@
+.idea/
+node_modules/

Diferenças do arquivo suprimidas por serem muito extensas
+ 7326 - 0
package-lock.json


+ 28 - 0
package.json

@@ -0,0 +1,28 @@
+{
+  "name": "@mightyplow/simple-calorie-tracker",
+  "version": "1.0.0",
+  "description": "A simple web app to track calories.",
+  "main": "index.js",
+  "scripts": {
+    "test": "echo \"Error: no test specified\" && exit 1"
+  },
+  "repository": {
+    "type": "git",
+    "url": "https://git.mightyplow.net/mightyplow/simple-calorie-tracker"
+  },
+  "keywords": [
+    "webapp",
+    "calories",
+    "fitness",
+    "app",
+    "web"
+  ],
+  "author": "mightyplow@gmail.com",
+  "license": "UNLICENSED",
+  "dependencies": {},
+  "devDependencies": {
+    "parcel-bundler": "^1.12.4",
+    "react": "^16.11.0",
+    "react-dom": "^16.11.0"
+  }
+}