-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
32 lines (32 loc) · 1.09 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
{
"private": true,
"packageManager": "[email protected]",
"engines": {
"pnpm": "^8.0.0"
},
"scripts": {
"dev": "turbo run dev --parallel --filter=playground --filter=react-use-intercom",
"dev:examples": "turbo run dev --parallel --filter=*-example --filter=react-use-intercom",
"test": "turbo run test",
"build": "turbo run build",
"build:playground": "turbo run build --filter=playground",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"clean": "turbo run clean && rm -rf node_modules",
"e2e": "turbo run e2e --filter=playground",
"e2e:open": "turbo run e2e:open --filter=playground",
"changeset": "changeset",
"release": "turbo run build --filter=react-use-intercom && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.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.3",
"turbo": "^1.9.8"
}
}