-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.53 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
{
"name": "pyro",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "turbo run build --no-daemon ",
"lint": "turbo run lint --no-daemon",
"lint:prettier": "turbo run lint:prettier --no-daemon",
"format": "run-p format:prettier",
"format:prettier": "prettier -w .",
"prepare": "husky install",
"test": "turbo run test --no-daemon",
"test:watch": "turbo run test:watch --no-daemon",
"release": "turbo build && changeset version && changeset publish"
},
"devDependencies": {
"@turbo/gen": "^1.9.7",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"eslint": "^8.42.0",
"@mussonindustrial/eslint-config-pyro": "workspace:*",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"semver": "^7.5.1",
"turbo": "latest",
"typescript": "^5.1.3",
"vitest": "^0.32.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --ext js,jsx,ts,tsx --quiet --fix --",
"prettier --write"
],
"*.{md,mdx,mjs,yml,yaml,css}": [
"prettier --write"
]
},
"packageManager": "[email protected]",
"workspaces": [
"packages/*"
],
"dependencies": {
"@changesets/cli": "^2.26.2",
"changeset": "^0.2.6",
"init": "^0.1.2",
"npx": "^10.2.2"
}
}