-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.45 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
{
"name": "@plantae/monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "ultra -r build",
"build:dts": "ultra -r --build build:dts",
"clean": "ultra -r clean",
"format": "eslint --fix --ext .js,.json,.ts,.tsx --ignore-path .gitignore .",
"release": "yarn build && yarn changeset publish",
"test": "yarn build && ultra -r test",
"typecheck": "tsc --noEmit",
"version": "changeset version && yarn install --no-immutable",
"version:snapshot": "changeset version --snapshot main && yarn install --no-immutable"
},
"lint-staged": {
"*.js": "eslint --fix --ignore-path .gitignore",
"*.json": "eslint --fix --ignore-path .gitignore",
"*.ts": "eslint --fix --ignore-path .gitignore",
"*.tsx": "eslint --fix --ignore-path .gitignore"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/node": "^18.15.0",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"concurrently": "^7.6.0",
"eslint": "^8.36.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.7.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"lint-staged": "^13.2.0",
"prettier": "^2.8.4",
"typescript": "^5.1.3",
"ultra-runner": "^3.10.5"
},
"packageManager": "yarn@3.6.0"
}