This repository has been archived by the owner on May 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
75 lines (75 loc) · 2.27 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
{
"name": "noter",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "tauri dev",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"prepare": "husky install",
"lint-check": "eslint .",
"test": "vitest",
"coverage": "vitest run --coverage",
"e2e": "pnpm exec playwright test",
"e2e:ui": "pnpm exec playwright test --ui",
"e2e:debug": "pnpm exec playwright test --debug"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.19",
"@chakra-ui/react": "^2.8.1",
"@codemirror/commands": "^6.3.0",
"@codemirror/lang-markdown": "^6.1.1",
"@codemirror/language": "^6.7.0",
"@codemirror/language-data": "^6.3.1",
"@codemirror/search": "^6.5.6",
"@codemirror/state": "^6.2.1",
"@codemirror/view": "^6.12.0",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@fontsource-variable/fira-code": "^5.0.18",
"@fontsource-variable/noto-sans-jp": "^5.0.19",
"@lezer/highlight": "^1.1.5",
"@tauri-apps/api": "^1.2.0",
"@types/react-resizable": "^3.0.4",
"codemirror": "^6.0.1",
"framer-motion": "^10.8.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-resizable": "^3.0.5",
"thememirror": "^2.0.1",
"use-local-storage-state": "^18.3.2"
},
"devDependencies": {
"@playwright/test": "^1.36.0",
"@tauri-apps/cli": "^1.2.2",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/node": "^18.7.10",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@vitejs/plugin-react": "^3.0.0",
"@vitest/coverage-c8": "^0.31.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.32.2",
"husky": ">=7",
"jsdom": "^22.0.0",
"lint-staged": ">=10",
"prettier": "^2.8.8",
"typescript": "*",
"vite": "^5.1.5",
"vitest": "^0.31.0"
},
"lint-staged": {
"*.{js,css,md,vue,json,ts,tsx,jsx}": "prettier --write"
}
}