-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
56 lines (56 loc) · 1.6 KB
/
package.json
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "esbuild-scripts",
"private": true,
"workspaces": [
"packages/**"
],
"scripts": {
"check:format": "prettier --check .",
"check:lint": "yarn lint .",
"check:typings": "tsc --noEmit",
"lint": "eslint --cache --ext .ts,.tsx --max-warnings 0",
"postinstall": "patch-package && husky install",
"build": "yarn --cwd packages/esbuild-scripts tsc",
"release": "yarn build && changeset publish",
"esbuild-scripts": "ts-node packages/esbuild-scripts/src/index.ts"
},
"description": "",
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@changesets/cli": "^2.22.0",
"@manypkg/cli": "^0.18.0",
"@types/babel-code-frame": "^6.20.5",
"@types/chalk": "^2.2.0",
"@types/cross-spawn": "^6.0.2",
"@types/escape-string-regexp": "^2.0.1",
"@types/express": "^4.17.13",
"@types/express-ws": "^3.0.1",
"@types/fs-extra": "^9.0.12",
"@types/global-modules": "^2.0.0",
"@types/html-minifier-terser": "^6.1.0",
"@types/is-ci": "^3.0.0",
"@types/jest": "^27.0.1",
"@types/node": "^17.0.35",
"@types/parse5": "^6.0.1",
"@types/prompts": "^2.0.14",
"@types/strip-ansi": "^5.2.1",
"@types/tmp": "^0.2.1",
"eslint": "^7.32.0",
"eslint-config-modular-app": "^1.0.5",
"husky": "^8.0.1",
"lint-staged": "^11.1.2",
"patch-package": "^6.4.7",
"prettier": "^2.6.2",
"ts-node": "^10.2.1",
"typescript": "^4.7.2"
},
"eslintConfig": {
"extends": "modular-app"
},
"lint-staged": {
"*": "manypkg fix && yarn check:format --write",
".{ts,tsx}": "yarn check:lint"
}
}