forked from mattpocock/ts-error-translator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 991 Bytes
/
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
{
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"translate": "ts-node -T scripts/translate.ts",
"lint": "turbo run lint",
"test": "turbo run test",
"extension:build": "yarn workspace ts-error-translator compile",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky install",
"release": "turbo run publish:vsce publish:ovsx && node ./scripts/tag-extension.js"
},
"devDependencies": {
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "^2.5.1",
"ts-node": "^10.7.0",
"turbo": "^1.2.6"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json}": "prettier --write"
},
"prettier": {
"arrowParens": "always",
"printWidth": 80,
"singleQuote": true,
"semi": true,
"trailingComma": "all"
},
"dependencies": {
"@changesets/changelog-github": "^0.4.4",
"@changesets/cli": "^2.22.0"
}
}