-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.08 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.08 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@internxt/ui",
"version": "0.1.9",
"description": "Library of Internxt components",
"repository": {
"type": "git",
"url": "git+https://github.com/internxt/ui.git"
},
"author": "",
"license": "MIT",
"homepage": "https://github.com/internxt/ui#readme",
"type": "module",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"peerDependencies": {
"@phosphor-icons/react": "^2.1.10",
"react": ">=18.2.0",
"react-dom": ">=18.2.0",
"react-dnd": "16.0.1",
"react-dnd-html5-backend": "^16.0.1"
},
"devDependencies": {
"@chromatic-com/storybook": "4.1.3",
"@internxt/eslint-config-internxt": "2.0.1",
"@internxt/prettier-config": "internxt/prettier-config#v1.0.2",
"@storybook/addon-links": "^10.1.4",
"@storybook/addon-onboarding": "^10.1.4",
"@storybook/addon-themes": "^10.1.4",
"@storybook/blocks": "^8.6.14",
"@storybook/preview-api": "^8.6.14",
"@storybook/react": "^10.1.4",
"@storybook/react-vite": "^10.1.4",
"@storybook/test": "^8.6.14",
"@tailwindcss/postcss": "^4.1.17",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/lodash": "^4.17.21",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@typescript-eslint/parser": "^8.48.1",
"@vitest/coverage-istanbul": "^3.2.4",
"@vitest/ui": "^3.2.4",
"eslint": "^9.39.1",
"eslint-plugin-storybook": "^10.1.4",
"gh-pages": "^6.3.0",
"husky": "^9.1.7",
"jsdom": "^27.2.0",
"lint-staged": "^16.2.7",
"postcss": "^8.5.6",
"prettier": "^3.7.4",
"react": "^18.3.1",
"react-dnd": "16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.3.1",
"sass": "^1.94.2",
"storybook": "^10.1.4",
"tailwindcss": "^4.1.17",
"typescript": "^5.9.3",
"vite": "^7.2.6",
"vite-plugin-css-injected-by-js": "^3.5.2",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-svgr": "^4.5.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4",
"@storybook/addon-docs": "^10.1.4"
},
"scripts": {
"build:tsc": "tsc",
"build:vite": "vite build",
"build:storybook": "yarn storybook:build",
"build": "yarn build:tsc && yarn build:vite && yarn build:storybook",
"predeploy": "yarn storybook:build",
"deploy": "gh-pages -d storybook-static -b storybook-ui",
"format": "prettier --write --parser typescript '**/*.{ts,tsx}'",
"lint": "eslint ./src --ext .ts,.tsx --fix",
"test": "vitest run",
"test:update": "vitest run -u",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage",
"storybook:dev": "storybook dev -p 6006",
"storybook:build": "storybook build"
},
"dependencies": {
"@internxt/css-config": "1.1.0",
"@phosphor-icons/react": "^2.1.10",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/themes": "^3.2.1"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write"
]
}
}