-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 839 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 839 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
26
27
{
"name": "snapfeed-monorepo",
"private": true,
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"workspaces": [
"packages/*",
"examples/react"
],
"scripts": {
"build": "npm run build --workspaces",
"build:react-e2e": "npm run -w examples/react build",
"clean": "npm run clean --workspaces",
"dev:react-e2e": "npm run -w examples/react dev",
"dev:react-e2e:server": "npm run -w examples/react dev:server",
"lint": "npx biome ci .",
"lint:fix": "npx biome check --write .",
"storybook:client": "npm run -w packages/client storybook",
"storybook:client:build": "npm run -w packages/client storybook:build",
"test": "npm run test --workspaces --if-present",
"test:react-e2e": "npm run -w examples/react e2e"
},
"devDependencies": {
"@biomejs/biome": "^2.4.9"
}
}