Skip to content

Commit d48c31e

Browse files
committed
feat(scripts): add build, type-check, lint, format check, and test scripts to package.json
1 parent 9778a70 commit d48c31e

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

package.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@
55
"main": "index.js",
66
"scripts": {
77
"start": "node index.js",
8-
"dev": "node --watch index.js"
8+
"dev": "node --watch index.js",
9+
"build": "tsc",
10+
"type-check": "tsc --noEmit",
11+
"lint": "eslint . --ext .ts",
12+
"format:check": "prettier --check .",
13+
"test": "jest"
914
},
1015
"repository": {
1116
"type": "git",

0 commit comments

Comments
 (0)