-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
29 lines (29 loc) · 926 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
{
"private": true,
"packageManager": "[email protected]",
"engines": {
"pnpm": "^8.0.0"
},
"scripts": {
"dev": "turbo run dev --parallel --filter=react-use-pylon",
"dev:examples": "turbo run dev --parallel --filter=*-example --filter=react-use-pylon",
"test": "turbo run test",
"build": "turbo run build",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"clean": "turbo run clean && rm -rf node_modules",
"changeset": "changeset",
"release": "turbo run build --filter=react-use-pylon && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.10.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"prettier": "^2.8.8",
"turbo": "^1.11.3"
}
}