-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
109 lines (109 loc) · 3.31 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "reg-suit-report-ui",
"version": "0.4.0",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"build": "cross-env NODE_ENV=\"production\" npm-run-all clean -p build:source build:worker",
"build-storybook": "storybook build",
"build:source": "yarn vite:source build",
"build:worker": "yarn vite:worker build",
"clean": "rimraf dist",
"dev": "run-p dev:source dev:worker",
"dev:huge": "VITE_ENABLED_HUGE=true yarn dev",
"dev:source": "yarn vite:source",
"dev:worker": "yarn build:worker --watch --mode development",
"format": "run-s format:script format:prettier",
"format:prettier": "prettier --write .",
"format:script": "yarn lint:script --fix",
"lint": "run-p lint:*",
"lint:prettier": "prettier --check .",
"lint:script": "eslint .",
"prepare": "husky",
"scaffold": "yarn scaffdog generate",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build",
"test": "vitest run",
"test:watch": "vitest watch",
"typecheck": "tsc",
"vite:source": "vite -c vite.config.source.js",
"vite:worker": "vite -c vite.config.worker.js"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,md,yml,json}": [
"prettier --write"
]
},
"browserslist": "> 1%, not dead, not IE <= 11, not OperaMini all",
"prettier": {
"plugins": [
"prettier-plugin-packagejson"
],
"singleQuote": true
},
"resolutions": {
"jackspeak": "2.1.1",
"strip-ansi": "6.0.1"
},
"dependencies": {
"@vanilla-extract/css": "^1.14.2",
"body-scroll-lock": "^3.1.5",
"clsx": "^2.1.1",
"debounce": "^2.0.0",
"focus-trap": "^7.5.4",
"fuse.js": "^7.0.0",
"history": "^5.3.0",
"jotai": "^2.8.0",
"mitt": "^3.0.1",
"query-string": "^9.0.0",
"rc-slider": "^10.6.2",
"re-resizable": "^6.9.16",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-md-spinner": "^1.0.0",
"react-transition-group": "^4.4.5",
"tinykeys": "^2.1.0",
"unstated-next": "^1.1.0",
"use-intersection": "^0.2.1",
"x-img-diff-js": "^0.3.5"
},
"devDependencies": {
"@storybook/addon-essentials": "^8.0.9",
"@storybook/addon-interactions": "^8.0.9",
"@storybook/blocks": "^8.0.9",
"@storybook/react": "^8.0.9",
"@storybook/react-vite": "^8.0.9",
"@storybook/test": "^8.0.9",
"@types/body-scroll-lock": "^3.1.2",
"@types/imagesloaded": "^4.1.6",
"@types/mousetrap": "^1.6.15",
"@types/node": "^20.12.7",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@types/react-measure": "^2.0.12",
"@types/react-transition-group": "^4.4.10",
"@vanilla-extract/vite-plugin": "^4.0.7",
"@vitejs/plugin-react": "^4.2.1",
"cross-env": "^7.0.3",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"globals": "^15.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"npm-run-all2": "^6.1.2",
"prettier": "^3.2.4",
"prettier-plugin-packagejson": "2.5.0",
"rimraf": "^5.0.5",
"scaffdog": "^3.0.0",
"storybook": "^8.0.9",
"typescript": "^5.4.5",
"typescript-eslint": "^7.7.1",
"vite": "^5.2.10",
"vite-plugin-static-copy": "^1.0.3",
"vitest": "^1.5.2"
}
}