-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.27 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.27 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
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "flowprint-monorepo",
"private": true,
"packageManager": "pnpm@9.15.4",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test:e2e": "playwright test",
"changeset": "changeset",
"version": "changeset version",
"release": "changeset publish",
"size": "size-limit",
"size:report": "size-limit --json"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@playwright/test": "^1.58.2",
"@size-limit/file": "^12.0.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.3.0",
"jsdom": "^28.0.0",
"prettier": "^3.8.1",
"size-limit": "^12.0.0",
"turbo": "^2.3.3",
"typescript": "^5.7.3",
"typescript-eslint": "^8.54.0",
"vitest": "^4.0.18"
},
"size-limit": [
{
"name": "@ruminaider/flowprint-editor",
"path": "packages/editor/dist/index.js",
"limit": "300 kB",
"gzip": true
}
]
}