Add deps for esbuild + jest

This commit is contained in:
Tangent Wantwight 2023-08-04 23:48:50 -04:00
parent 57c65b10f2
commit 56d7826aad
2 changed files with 14 additions and 0 deletions

2
.gitignore vendored
View File

@ -0,0 +1,2 @@
node_modules
package-lock.json

12
package.json Normal file
View File

@ -0,0 +1,12 @@
{
"scripts": {
"check": "tsc --noEmit",
"serve": "esbuild 3x5.js --bundle --format=iife --outfile=bundle.js --sourcemap --servedir=.",
"build": "esbuild 3x5.js --bundle --format=iife --outfile=bundle.js"
},
"devDependencies": {
"esbuild": "^0.18.17",
"jest": "^29.6.2",
"typescript": "^5.1.6"
}
}