-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.16 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
{
"name": "@internxt/ui",
"version": "0.0.11",
"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": {
"react": "^18.2.0",
"@phosphor-icons/react": "^2.1.5"
},
"resolutions": {
"jackspeak": "2.1.1"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.2.25",
"@internxt/eslint-config-internxt": "^1.0.9",
"@internxt/prettier-config": "^1.0.2",
"@storybook/addon-essentials": "^8.0.4",
"@storybook/addon-interactions": "^8.0.4",
"@storybook/addon-links": "^8.0.4",
"@storybook/addon-onboarding": "^8.0.4",
"@storybook/addon-themes": "^8.0.4",
"@storybook/blocks": "^8.0.4",
"@storybook/react": "^8.0.4",
"@storybook/react-vite": "^8.0.4",
"@storybook/test": "^8.0.4",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.2.67",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"@vitest/coverage-istanbul": "^2.1.5",
"@vitest/ui": "^2.1.8",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.8.0",
"gh-pages": "^6.2.0",
"husky": "^9.0.11",
"jsdom": "^24.0.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.12",
"react": "^18.2.0",
"react-dnd": "14.0.5",
"react-dnd-html5-backend": "^14.0.0",
"sass": "^1.72.0",
"storybook": "^8.0.4",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.3",
"vite": "^5.2.2",
"vite-plugin-css-injected-by-js": "^3.5.2",
"vite-plugin-dts": "^3.7.3",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^5.1.3",
"vitest": "^2.1.8"
},
"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 . --ext .ts,.tsx --ignore-path .gitignore --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.0.2",
"@phosphor-icons/react": "^2.1.5",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/themes": "^3.0.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write"
]
}
}