-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.2 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.2 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
{
"name": "digu",
"version": "1.0.2",
"private": true,
"scripts": {
"tauri": "tauri",
"icon": "tauri icon ./static/app-icon.png & cpy src-tauri/icons/Square30x30Logo.png static --rename=favicon.png --flat",
"dev": "npm run icon & vite dev",
"build": "npm run icon & vite build",
"preview": "vite preview",
"vitest": "vitest run",
"vitest:coverage": "vitest run --coverage",
"vitest:ui": "vitest --ui --coverage.enabled",
"vitest:watch": "vitest",
"playwright-test": "playwright test",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check --plugin prettier-plugin-svelte . && eslint . --fix",
"format": "prettier --write --plugin prettier-plugin-svelte .",
"find-deadcode": "ts-prune --ignore \\.svelte-kit"
},
"devDependencies": {
"@playwright/test": "^1.32.3",
"@sveltejs/adapter-auto": "^3.0.0",
"@sveltejs/adapter-static": "^3.0.0",
"@sveltejs/kit": "^2.0.0",
"@tauri-apps/cli": "^1.5.2",
"@testing-library/svelte": "^4.0.3",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vitest/coverage-v8": "^1.0.0",
"@vitest/ui": "^1.0.0",
"@vitest/web-worker": "^1.0.0",
"autoprefixer": "^10.4.14",
"classnames": "^2.3.2",
"cpy-cli": "^5.0.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-svelte": "^2.31.1",
"fake-indexeddb": "^5.0.1",
"happy-dom": "^14.0.0",
"postcss": "^8.4.22",
"postcss-load-config": "^5.0.0",
"prettier": "^3.0.0",
"prettier-plugin-svelte": "^3.0.0",
"puppeteer": "^22.0.0",
"sass": "^1.62.0",
"svelte": "^4.0.0",
"svelte-check": "^3.2.0",
"svelte-highlight": "^7.2.1",
"svelte-preprocess": "^5.0.3",
"tailwind-merge": "^2.0.0",
"tailwind-scrollbar": "^3.0.4",
"tailwindcss": "^3.3.1",
"ts-prune": "^0.10.3",
"tslib": "^2.5.0",
"typescript": "^5.0.4",
"vite": "^5.0.0",
"vitest": "^1.0.0"
},
"type": "module",
"dependencies": {
"ag-grid-community": "^31.0.0",
"dexie": "^3.2.3",
"ethers": "^6.3.0"
}
}