-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.37 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.37 KB
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
33
34
35
36
37
{
"name": "rollups-explorer",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "turbo run build",
"build:storybook": "turbo run build-storybook",
"storybook": "turbo run storybook",
"dev": "turbo run dev --no-cache --continue",
"lint": "turbo run lint",
"clean": "turbo run clean && rm -rf node_modules",
"format:check": "prettier \"**/*.{ts,tsx}\" --check",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"test": "turbo run test",
"test:ci": "turbo run test:ci --filter=!workshop",
"test:e2e": "turbo run test:e2e",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build && changeset publish",
"coveralls": "mkdir coverage && ./node_modules/.bin/lcov-result-merger './!(node_modules)**/**/coverage/lcov.info' './coverage/lcov.info' --prepend-source-files"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@octokit/auth-action": "^6.0.2",
"@octokit/rest": "^22.0.1",
"@vercel/sdk": "^1.19.6",
"eslint-config-cartesi": "workspace:*",
"lcov-result-merger": "5.0.1",
"prettier": "catalog:",
"turbo": "^2.8.11",
"typescript": "catalog:"
},
"engines": {
"node": ">=22.x"
},
"packageManager": "pnpm@10.25.0"
}