|
@@ -4,6 +4,8 @@
|
|
"description": "A simple web app to track calories.",
|
|
"description": "A simple web app to track calories.",
|
|
"main": "index.js",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"scripts": {
|
|
|
|
+ "build": "parcel build -d dist --public-url / ./src/index.html",
|
|
|
|
+ "dev": "parcel serve -d dist --public-url / ./src/index.html",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
},
|
|
"repository": {
|
|
"repository": {
|
|
@@ -19,8 +21,19 @@
|
|
],
|
|
],
|
|
"author": "mightyplow@gmail.com",
|
|
"author": "mightyplow@gmail.com",
|
|
"license": "UNLICENSED",
|
|
"license": "UNLICENSED",
|
|
- "dependencies": {},
|
|
|
|
|
|
+ "dependencies": {
|
|
|
|
+ "typescript": "^3.7.2"
|
|
|
|
+ },
|
|
"devDependencies": {
|
|
"devDependencies": {
|
|
|
|
+ "@typescript-eslint/eslint-plugin": "^2.7.0",
|
|
|
|
+ "@typescript-eslint/parser": "^2.7.0",
|
|
|
|
+ "eslint": "^6.6.0",
|
|
|
|
+ "eslint-config-standard": "^14.1.0",
|
|
|
|
+ "eslint-plugin-import": "^2.18.2",
|
|
|
|
+ "eslint-plugin-node": "^10.0.0",
|
|
|
|
+ "eslint-plugin-promise": "^4.2.1",
|
|
|
|
+ "eslint-plugin-react": "^7.16.0",
|
|
|
|
+ "eslint-plugin-standard": "^4.0.1",
|
|
"parcel-bundler": "^1.12.4",
|
|
"parcel-bundler": "^1.12.4",
|
|
"react": "^16.11.0",
|
|
"react": "^16.11.0",
|
|
"react-dom": "^16.11.0"
|
|
"react-dom": "^16.11.0"
|