-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
28 lines (28 loc) · 854 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
{
"private": true,
"workspaces": [
"perf",
"config/*",
"packages/*",
"examples"
],
"scripts": {
"perf": "yarn workspace @arborjs/store-perf run test:perf",
"clean": "yarn workspaces foreach run clean",
"build": "npx turbo run build lint test cy:ci",
"build:dev": "npx turbo run build:dev lint test cy:ci",
"publish": "yarn workspaces foreach --topological-dev --no-private npm publish --tolerate-republish"
},
"devDependencies": {
"@types/node": "^20.1.3",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"eslint": "^8.40.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"turbo": "^1.9.4",
"typescript": "^5.0.4"
}
}