-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 815 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 815 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"name": "typescript-playground",
"description": "A place to play with Typescript that has all of my favorite DX tools ready to go.",
"packageManager": "yarn@3.2.0",
"main": "src/index.ts",
"type": "module",
"scripts": {
"dev": "yarn nodemon",
"lint": "yarn eslint --max-warnings=0 --cache --fix \"**/*.{js,ts,jsx,tsx}\"",
"pretest": "tsc --noEmit",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"precommit": "npx lint-staged"
},
"devDependencies": {
"@20i/eslint-config": "^2.0.3",
"eslint": "^8.10.0",
"husky": "^7.0.0",
"lint-staged": "^12.1.0",
"pinst": "^3.0.0",
"prettier": "^2.5.1",
"typescript": "^4.6.2"
},
"dependencies": {
"esbuild": "^0.14.25",
"nodemon": "^2.0.15"
}
}