-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 759 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 759 Bytes
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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"lerna": "^6.5.1",
"prettier": "^2.8.3"
},
"scripts": {
"start": "npx lerna run start --scope=frostbyte",
"build:ladle": "npx lerna run build --scope=ladle",
"build": "npx lerna run build --scope=frostbyte --skip-nx-cache",
"generate": "npx lerna run generate --scope=frostbyte",
"ladle": "npx lerna run dev --scope=ladle",
"build:all": "npx lerna run build",
"lerna:publish": "npx lerna publish --no-private"
}
}