-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 4.1 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 4.1 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "bioparallel",
"description": "Application for forensic trace comparison",
"version": "0.2.1",
"author": {
"name": "Cyprian Zdebski",
"email": "cyprianz5mail@gmail.com",
"url": "https://github.com/shipurjan"
},
"repository": {
"type": "git",
"url": "https://github.com/shipurjan/bioparallel"
},
"license": "SEE LICENSE IN ../LICENSE.md",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"tsc:check": "tsc --noEmit",
"tsc:watch": "tsc --noEmit --watch",
"eslint:fix": "eslint --fix .",
"eslint:check": "eslint .",
"prettier:write": "prettier --write .",
"prepare": "husky install",
"test": "jest",
"test:unit": "jest ./__tests__/unit --passWithNoTests",
"test:e2e": "jest ./__tests__/e2e --passWithNoTests"
},
"dependencies": {
"@atlaskit/pragmatic-drag-and-drop-flourish": "1.1.0",
"@pixi/react": "7.1.0",
"@radix-ui/react-checkbox": "1.0.4",
"@radix-ui/react-dropdown-menu": "2.0.6",
"@radix-ui/react-label": "2.0.2",
"@radix-ui/react-radio-group": "1.1.3",
"@radix-ui/react-separator": "1.0.3",
"@radix-ui/react-slot": "1.0.2",
"@radix-ui/react-switch": "1.0.3",
"@radix-ui/react-tabs": "1.0.4",
"@radix-ui/react-toggle": "1.0.3",
"@radix-ui/react-toggle-group": "1.0.4",
"@tanstack/react-table": "8.15.0",
"@tauri-apps/api": "2.0.0-beta.5",
"@tauri-apps/plugin-dialog": "2.0.0-beta.2",
"@tauri-apps/plugin-fs": "2.0.0-beta.2",
"@tauri-apps/plugin-store": "2.0.0-beta.2",
"class-variance-authority": "0.7.0",
"clsx": "2.1.0",
"i18next": "23.10.1",
"i18next-resources-to-backend": "1.2.0",
"immer": "10.0.4",
"lucide-react": "0.363.0",
"modern-normalize": "2.0.0",
"next": "14.1.4",
"next-themes": "0.3.0",
"pixi-viewport": "5.0.2",
"pixi.js": "7.4.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-i18next": "14.1.0",
"react-resizable-panels": "2.0.13",
"react-virtuoso": "4.7.4",
"sonner": "1.4.41",
"tailwind-merge": "2.2.2",
"tailwindcss-animate": "1.0.7",
"tiny-invariant": "1.3.3",
"use-debounce": "10.0.0",
"zustand": "4.5.2"
},
"devDependencies": {
"@commitlint/cli": "19.2.1",
"@commitlint/config-conventional": "19.1.0",
"@tauri-apps/cli": "2.0.0-beta.9",
"@testing-library/jest-dom": "6.4.2",
"@testing-library/react": "14.2.2",
"@types/jest": "29.5.12",
"@types/node": "20.11.30",
"@types/react": "18.2.69",
"@types/react-dom": "18.2.22",
"@types/selenium-webdriver": "4.1.22",
"@typescript-eslint/eslint-plugin": "7.3.1",
"autoprefixer": "10.4.19",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-next": "14.1.4",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.34.1",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-security": "2.1.1",
"eslint-plugin-simple-import-sort": "12.0.0",
"eslint-plugin-sonarjs": "0.24.0",
"find-process": "1.4.7",
"husky": "9.0.11",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "15.2.2",
"postcss": "8.4.38",
"prettier": "3.2.5",
"selenium-webdriver": "4.18.1",
"tailwindcss": "3.4.1",
"ts-node": "10.9.2",
"typescript": "5.3.3"
},
"pnpm": {
"patchedDependencies": {
"pixi-viewport@5.0.2": "patches/pixi-viewport@5.0.2.patch"
}
},
"packageManager": "pnpm@8.15.5+sha256.4b4efa12490e5055d59b9b9fc9438b7d581a6b7af3b5675eb5c5f447cee1a589"
}