-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.8 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.8 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "block-oli",
"private": true,
"version": "0.1.13",
"type": "module",
"engines": {
"node": "24.12.0",
"pnpm": "10",
"npm": "please_use_pnpm_instead"
},
"packageManager": "[email protected]",
"scripts": {
"dev": "vite",
"build": "run-s build:*",
"build:schema": "run-s build:schema:*",
"build:schema:quicktype": "quicktype src/modules/core/rules.ts -o src/schemas/draft.json --lang schema",
"build:schema:merge": "node src/schemas/merge.js",
"build:src": "tsc && vite build",
"publish": "run-s build test",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "vitest --no-watch",
"test:watch": "vitest --watch",
"test:unit": "vitest --no-watch --project=unit",
"test:browser": "vitest --no-watch --project=browser",
"test:update-snapshots": "vitest --no-watch --project=browser --update",
"test:coverage": "vitest --run --coverage",
"test:coverage:report": "open \"file://$(pwd)/coverage/index.html\"",
"docker:test:browser": "docker compose -f test/compose.yml run --rm test pnpm test:browser",
"docker:test:update-snapshots": "docker compose -f test/compose.yml run --rm test pnpm test:update-snapshots",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@chakra-ui/react": "^3.34.0",
"@emotion/react": "^11.14.0",
"chakra-react-select": "^6.1.1",
"loglevel": "^1.9.2",
"loglevel-plugin-prefix": "^0.8.4",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-icons": "^5.6.0",
"react-transition-group": "^4.4.5"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.3.0",
"@eslint/js": "^9.39.3",
"@testing-library/react": "^16.3.2",
"@types/chrome": "^0.1.37",
"@types/lodash-es": "^4.17.12",
"@types/node": "^25.3.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/react-transition-group": "^4.4.12",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@vitejs/plugin-react-swc": "^4.2.3",
"@vitest/browser": "^4.0.18",
"@vitest/browser-playwright": "^4.0.18",
"@vitest/coverage-v8": "^4.0.18",
"ajv": "^8.18.0",
"deepmerge": "^4.3.1",
"eslint": "^9.39.3",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.4.0",
"happy-dom": "^20.8.3",
"lodash-es": "^4.17.23",
"npm-run-all": "^4.1.5",
"playwright": "^1.58.2",
"quicktype": "^23.2.6",
"sass-embedded": "^1.97.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vite": "^7.3.1",
"vite-plugin-zip-pack": "^1.2.4",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.0.18",
"vitest-browser-react": "^2.0.5"
}
}