-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.47 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.47 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
{
"name": "@reatom/reusables",
"version": "1.0.0",
"description": "A collection of reusable reatom extensions, utilities and integrations",
"private": true,
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"test": "vitest run",
"test:browser": "vitest --browser.headless=false",
"format": "prettier --write .",
"format:check": "prettier --check .",
"jsrepo:build": "jsrepo build",
"prepare": "husky"
},
"keywords": [
"jsrepo",
"reatom",
"reactive",
"state management",
"extensions"
],
"author": "Aleksei Gurianov <gurianov@gmail.com>",
"license": "MIT",
"packageManager": "pnpm@10.28.1",
"dependencies": {
"@reatom/core": "^1000.15.1",
"@reatom/react": "^1000.2.2",
"@tweakpane/core": "^2.0.5",
"@tweakpane/plugin-essentials": "^0.2.1",
"tweakpane": "^4.0.5"
},
"devDependencies": {
"@types/node": "^25.2.3",
"@types/react": "^19.2.14",
"@vitest/browser": "^4.0.18",
"@vitest/browser-playwright": "^4.0.18",
"add": "^2.0.6",
"astro": "^5.17.2",
"husky": "^9.1.7",
"jsrepo": "^3.3.0",
"lint-staged": "^16.2.7",
"marked": "^17.0.2",
"playwright": "^1.58.2",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-jsdoc": "^1.8.0",
"shiki": "^3.22.0",
"vitest": "^4.0.18"
},
"lint-staged": {
"*.{js,ts,tsx,mjs,cjs,mts,json,md,mdx,css,scss,yaml,yml}": "prettier --write"
}
}