Last active
August 5, 2022 08:26
-
-
Save e111077/8df90fc96b632b9838abf95681b0a3a7 to your computer and use it in GitHub Desktop.
I/O 2021 example package.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "scripts": { | |
| "build": "tsc", | |
| "build:watch": "npm run build -- --watch", | |
| "serve": "web-dev-server --node-resolve --watch --open", | |
| "dev": "npm run build:watch & npm run serve" | |
| }, | |
| "devDependencies": { | |
| "@web/dev-server": "^0.1.17", | |
| "typescript": "^4.2.4" | |
| }, | |
| "dependencies": { | |
| "lit": "^2.0.0" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment