-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.67 KB
/
package.json
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
63
64
65
66
{
"name": "conformal",
"private": true,
"workspaces": [
"web/*"
],
"dependencies": {
"@changesets/cli": "^2.28.0",
"@happy-dom/global-registrator": "^17.1.4",
"@morlay/bunpublish": "^0.4.1",
"@next/eslint-plugin-next": "^14.2.16",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/bun": "1.1.9",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@typescript-eslint/eslint-plugin": "^8.24.1",
"@typescript-eslint/parser": "^8.24.1",
"@vitejs/plugin-react-swc": "^3.7.1",
"autoprefixer": "^10.4.20",
"bun-plugin-dts": "^0.2.4",
"eslint": "^8.57.1",
"eslint-plugin-prefer-arrow-functions": "^3.4.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.14",
"mime": "^4.0.4",
"next": "^15.1.7",
"nextra": "^3.2.0",
"nextra-theme-docs": "^3.2.0",
"prettier": "^3.3.3",
"tmp-promise": "^3.0.3",
"typedoc": "^0.26.11",
"typescript": "^5.6.3",
"zod": "^3.24.2"
},
"scripts": {
"bootstrap": "conformal-scripts bootstrap",
"ci": "conformal-scripts ci",
"check-lfs": "conformal-scripts check-lfs",
"check-todo": "conformal-scripts check-todo",
"check-format": "conformal-scripts check-format",
"format": "conformal-scripts format",
"web-dev": "conformal-scripts web-script -s dev",
"web-storybook": "conformal-scripts web-script -s storybook",
"web-build-storybook": "conformal-scripts web-script -s build-storybook",
"web-build": "conformal-scripts web-script -s build",
"web-lint": "conformal-scripts web-script -s lint",
"web-test": "bun test",
"rust-miri": "PROPTEST_DISABLE_FAILURE_PERSISTENCE=true MIRIFLAGS='-Zmiri-env-forward=PROPTEST_DISABLE_FAILURE_PERSISTENCE' conformal-scripts cargo +nightly miri test",
"rust-build": "conformal-scripts cargo build",
"rust-lint": "conformal-scripts cargo clippy",
"rust-test": "conformal-scripts cargo test --all-features",
"rust-bench": "conformal-scripts cargo bench",
"rust-snapshot-update": "UPDATE_SNAPSHOTS=1 bun run rust-test",
"package": "conformal-scripts web-script -s package",
"validate": "conformal-scripts web-script -s validate",
"release": "conformal-internal-scripts release",
"deploy-docs": "conformal-internal-scripts deploy-docs",
"web-change": "changeset",
"rust-change": "conformal-internal-scripts rust-change",
"rust-prepare-release": "conformal-internal-scripts rust-prepare-release",
"web-prepare-release": "changeset version && bun install",
"prepare-release": "bun run rust-prepare-release && bun run web-prepare-release"
}
}