-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.86 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
{
"name": "block-oli",
"private": true,
"version": "0.1.10",
"type": "module",
"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",
"zip": "npm-build-zip --source=dist/",
"publish": "run-s build test zip",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "vitest --no-watch",
"test:watch": "vitest --watch",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"chakra-react-select": "^4.9.1",
"loglevel": "^1.9.1",
"loglevel-plugin-prefix": "^0.8.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.2.1",
"react-transition-group": "^4.4.5"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.0.0-beta.25",
"@types/chrome": "^0.0.268",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.14.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"ajv": "^8.16.0",
"deepmerge": "^4.3.1",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"lodash-es": "^4.17.21",
"npm-build-zip": "^1.0.4",
"npm-run-all": "^4.1.5",
"quicktype": "^23.0.170",
"typescript": "^5.5.3",
"vite": "^5.3.3",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0"
}
}