diff options
author | William Carroll <wpcarro@gmail.com> | 2020-03-25T17·04+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-03-25T17·04+0000 |
commit | 06d2467c56de10ee353b746992694365a17d526b (patch) | |
tree | 0c95bb8b7bf79f4b75eb5cd37c50e0be79bd53da /website/goals/package.json | |
parent | cd06990fe3cad2d3098bc1964f2b7185e4491cfa (diff) |
Use boilerplate/typescript for goals
After deploying the version of this application that built everything in the browser, which originally was the impetus for the entire project, I learned that the babel in-browser transformer won't work. I'm not sure why, but I need to move on from this project and do other work. I ported the code to my boilerplate/typescript, which works. Wahoo!
Diffstat (limited to 'website/goals/package.json')
-rw-r--r-- | website/goals/package.json | 25 |
1 files changed, 18 insertions, 7 deletions
diff --git a/website/goals/package.json b/website/goals/package.json index 1fbc88368ddf..ced454a8a315 100644 --- a/website/goals/package.json +++ b/website/goals/package.json @@ -1,15 +1,26 @@ { - "name": "goals", + "name": "tailwindcss", "version": "1.0.0", - "description": "", "main": "index.js", + "license": "MIT", "scripts": { - "dev": "browser-sync start --server --files *" + "dev": "npx parcel src/index.html & npx tsc --watch --noEmit" }, - "keywords": [], - "author": "", - "license": "ISC", "devDependencies": { - "browser-sync": "^2.26.7" + "@types/node": "^13.9.3", + "parcel-bundler": "^1.12.4", + "tailwindcss": "^1.2.0", + "typescript": "^3.8.3" + }, + "dependencies": { + "@reduxjs/toolkit": "^1.2.5", + "@types/react": "^16.9.25", + "@types/react-dom": "^16.9.5", + "@types/react-redux": "^7.1.7", + "@types/react-router-dom": "^5.1.3", + "react": "^16.13.1", + "react-dom": "^16.13.1", + "react-redux": "^7.2.0", + "react-router-dom": "^5.1.2" } } |