-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.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
{
"name": "@quassel/ui",
"private": true,
"version": "0.1.5",
"type": "module",
"keywords": [],
"description": "",
"author": "openscript GmbH",
"license": "MIT",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"style": "./dist/style.css",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./style.css": "./dist/style.css"
},
"files": [
"dist"
],
"scripts": {
"dev": "nx run-many -t build:dev --output-style stream-without-prefixes",
"build": "vite build --minify",
"build:dev": "vite build --watch --sourcemap",
"lint": "eslint .",
"preview": "vite preview"
},
"dependencies": {
"@mantine/core": "^7.16.2",
"@mantine/dates": "7.16.2",
"@mantine/form": "7.16.2",
"@mantine/hooks": "^7.16.2",
"@mantine/notifications": "7.16.2",
"@tabler/icons-react": "^3.29.0",
"dayjs": "^1.11.13",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-dsv-import": "^0.4.10"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"typescript": "^5.7.3",
"vite": "^6.1.0",
"vite-plugin-dts": "^4.5.0",
"vite-plugin-svgr": "^4.3.0"
}
}