-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
134 lines (134 loc) · 4.1 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"private": false,
"name": "@sentry/toolbar",
"version": "1.0.0-alpha.3",
"author": "Sentry",
"license": "MIT",
"description": "Sentry Toolbar",
"homepage": "https://github.com/getsentry/sentry-toolbar",
"keywords": [
"sentry"
],
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"engines": {
"node": ">=18",
"npm": "USE PNPM",
"pnpm": ">=9",
"yarn": "USE PNPM"
},
"volta": {
"node": "22.5.1",
"pnpm": "9.7.0"
},
"scripts": {
"dev:standalone": "vite",
"dev:server": "cd mock/server && pnpm install && pnpm start",
"dev:watch": "nodemon --exec 'rm -rf ./vite.config.ts.timestamp-* && pnpm build:lib' --ext ts,tsx --ignore dist/",
"dev": "run-p dev:server dev:watch",
"clean:lib": "rm -rf dist",
"build:lib": "vite build",
"build": "run-s clean:lib build:lib",
"lint:code": "eslint --report-unused-disable-directives",
"fix:code": "run-s 'lint:code --fix'",
"lint:types": "tsc --pretty --noEmit",
"lint:style": "stylelint ./src/**/*.css",
"fix:style": "run-s 'lint:style --fix'",
"test": "jest",
"start:docs": "storybook dev -p 6006",
"build:docs": "storybook build",
"generate:component": "npx generate-react-cli component",
"generate:api-types": "cd bin/detect-types && pnpm generate",
"prepare": "is-ci || husky",
"lint-staged": "lint-staged"
},
"dependencies": {
"@floating-ui/react": "^0.26.24",
"@sentry/types": "^8.30.0",
"@tanstack/react-query": "^5.56.2",
"@tanstack/react-virtual": "^3.10.8",
"cva": "npm:class-variance-authority@^0.7.0",
"date-fns": "^4.1.0",
"framer-motion": "^11.7.0",
"query-string": "^9.1.0",
"react": "^18.3.1",
"react-aria": "^3.34.3",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.2"
},
"devDependencies": {
"@eslint/compat": "1.1.1",
"@eslint/eslintrc": "3.1.0",
"@eslint/js": "9.8.0",
"@sentry/vite-plugin": "^2.22.4",
"@storybook/addon-essentials": "8.2.7",
"@storybook/addon-interactions": "8.3.2",
"@storybook/addon-links": "8.2.7",
"@storybook/blocks": "8.2.7",
"@storybook/builder-vite": "8.2.7",
"@storybook/react": "8.3.2",
"@storybook/react-vite": "8.2.7",
"@storybook/test": "8.3.2",
"@storybook/types": "8.2.7",
"@testing-library/jest-dom": "6.4.8",
"@testing-library/react": "16.0.0",
"@types/jest": "29.5.13",
"@types/lodash": "4.17.7",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "8.6.0",
"@typescript-eslint/parser": "8.6.0",
"@vitejs/plugin-react": "4.3.1",
"@yelo/rollup-node-external": "1.0.1",
"alias-hq": "6.2.3",
"eslint": "9.11.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-filename-export": "^1.0.4",
"eslint-plugin-import": "2.30.0",
"eslint-plugin-no-relative-import-paths": "^1.5.5",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.35.0",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-react-refresh": "0.4.9",
"eslint-plugin-storybook": "0.8.0",
"eslint-plugin-tailwindcss": "3.17.4",
"generate-react-cli": "8.4.8",
"husky": "9.1.4",
"identity-obj-proxy": "3.0.0",
"is-ci": "3.0.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "15.2.7",
"npm-run-all2": "6.2.3",
"postcss": "8.4.40",
"postcss-preset-env": "10.0.3",
"prettier": "3.3.3",
"react-docgen-typescript": "2.2.2",
"storybook": "8.3.2",
"stylelint": "16.8.1",
"stylelint-config-standard": "36.0.1",
"stylelint-order": "6.0.4",
"stylelint-prettier": "5.0.2",
"tailwindcss": "3.4.7",
"tailwindcss-animate": "^1.0.7",
"tailwindcss-react-aria-components": "^1.1.5",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.6.2",
"typescript-eslint": "8.6.0",
"vite": "5.4.7",
"vite-plugin-dts": "4.0.1"
}
}