-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
49 lines (49 loc) · 1.64 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
{
"name": "configuration-builder",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "pnpm typecheck && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"prettier-check": "prettier --parser=typescript \"{src,stories}/**/*.{ts,tsx}\" --check",
"prettier-write": "prettier --parser=typescript \"{src,stories}/**/*.{ts,tsx}\" --write",
"eslint-check": "eslint \"{src,stories}/**/*.{js,ts,tsx}\"",
"typecheck": "tsc"
},
"dependencies": {
"@buildo/bento-design-system": "workspace:*",
"@phosphor-icons/react": "2.1.7",
"@react-aria/i18n": "3.8.1",
"@react-aria/numberfield": "3.7.0",
"@react-stately/numberfield": "3.6.0",
"@vanilla-extract/css": "1.12.0",
"@vanilla-extract/recipes": "0.5.5",
"i18next": "22.5.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-i18next": "12.3.1",
"react-router-dom": "6.28.0",
"ts-pattern": "3.3.5"
},
"devDependencies": {
"@react-types/numberfield": "3.5.0",
"@tsconfig/vite-react": "2.0.1",
"@types/react": "18.3.19",
"@types/react-dom": "18.3.5",
"@typescript-eslint/eslint-plugin": "6.5.0",
"@typescript-eslint/parser": "6.5.0",
"@vanilla-extract/dynamic": "2.1.2",
"@vanilla-extract/sprinkles": "1.6.3",
"@vanilla-extract/vite-plugin": "3.9.5",
"@vitejs/plugin-react": "4.3.4",
"eslint": "8.57.1",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-react-refresh": "0.4.19",
"typescript": "5.1.3",
"vite": "5.4.16",
"vite-plugin-checker": "0.6.2"
}
}