-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.89 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
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@valbuild/root",
"version": "0.0.1",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/valbuild/val.git"
},
"scripts": {
"build": "preconstruct build && pnpm --filter @valbuild/ui build",
"postinstall": "preconstruct dev",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint .",
"test": "jest",
"test:e2e": "playwright test",
"test:smoke": "playwright test e2e/smoke.spec.ts",
"typecheck:e2e": "tsc --noEmit -p e2e/tsconfig.json",
"version-packages": "changeset version && pnpm install --no-frozen-lockfile",
"release": "pnpm run build && changeset publish",
"dev:example-next": "concurrently -k \"cd packages/ui; pnpm run dev\" \"cd examples/next; pnpm run dev\"",
"debug:replay": "tsx scripts/debugReplay.ts"
},
"devDependencies": {
"@babel/core": "^7.29.6",
"@babel/plugin-transform-runtime": "^7.28.5",
"@babel/preset-env": "^7.28.6",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@changesets/cli": "^3.0.1",
"@eslint/eslintrc": "^3.3.6",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.62.1",
"@preconstruct/cli": "^2.9.0",
"@types/jest": "^30.0.0",
"@types/node": "^26.4.0",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.68.0",
"@typescript-eslint/parser": "^8.68.0",
"babel-jest": "^30.5.0",
"concurrently": "^10.0.5",
"eslint": "^10.9.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"globals": "^17.11.0",
"jest": "30.5.0",
"prettier": "~3.8.5",
"tsx": "^4.23.12",
"ws": "^8.21.3"
},
"preconstruct": {
"packages": [
"packages/*"
],
"globals": {
"react": "React",
"react/jsx-runtime": "ReactJSX",
"react/jsx-dev-runtime": "ReactJSXDev"
},
"exports": true
}
}