-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.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
{
"name": "noteguard",
"license": "MIT",
"private": true,
"version": "0.1.0",
"scripts": {
"build": "vite build",
"dev": "vite --open",
"format": "prettier -uw --cache --ignore-path .gitignore .",
"run-tsc": "tsc",
"run-eslint": "eslint --cache --fix --ignore-path .gitignore --ext .ts,.tsx .",
"run-stylelint": "stylelint --cache --fix --ignore-path .gitignore **/*.css",
"lint": "run-p run-tsc run-eslint run-stylelint",
"validate": "run-p lint test:ci test:e2e:headless"
},
"dependencies": {
"@sqlite.org/sqlite-wasm": "3.45.2-build1",
"@types/sqlite3": "3.1.11",
"axios": "^1.7.2",
"dayjs": "^1.11.11",
"javascript-time-ago": "^2.5.10",
"kiss-crypto": "^0.3.0-beta.0",
"quill": "^2.0.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hotkeys-hook": "^4.5.0",
"react-quilljs": "^2.0.0",
"react-router-dom": "6.22.3",
"react-time-ago": "^7.3.3",
"slip39": "github:Raais/slip39-js",
"sqlite3": "5.1.7",
"tinybase": "4.7.1",
"unique-names-generator": "4.7.1",
"vite-plugin-node-polyfills": "0.22.0"
},
"devDependencies": {
"@nabla/vite-plugin-eslint": "2.0.2",
"@tailwindcss/forms": "0.5.7",
"@types/css-mediaquery": "0.1.4",
"@types/quill": "^2.0.14",
"@types/react": "18.2.76",
"@types/react-dom": "18.2.25",
"@types/react-router-dom": "5.3.3",
"@typescript-eslint/eslint-plugin": "7.6.0",
"@typescript-eslint/parser": "7.6.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "10.4.19",
"css-mediaquery": "0.1.2",
"eslint": "8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-cypress": "2.15.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-react": "7.34.1",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react-prefer-function-component": "3.3.0",
"eslint-plugin-testing-library": "6.2.0",
"eslint-plugin-unicorn": "52.0.0",
"husky": "9.0.11",
"jsdom": "24.0.0",
"lint-staged": "15.2.2",
"msw": "2.2.3",
"npm-run-all2": "6.1.2",
"postcss": "8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "0.5.13",
"start-server-and-test": "2.0.3",
"stylelint": "16.3.1",
"stylelint-config-standard": "36.0.0",
"tailwindcss": "3.4.3",
"typescript": "^5.4.2",
"vite": "^5.1.6",
"vite-tsconfig-paths": "4.3.2",
"whatwg-fetch": "3.6.20",
"workbox-build": "7.0.0",
"workbox-window": "7.0.0"
},
"browserslist": {
"production": "Edge >= 18, Firefox >= 60, Chrome >= 61, Safari >= 11, Opera >= 48",
"development": [
"last 1 chrome version",
"last 1 firefox version"
]
},
"lint-staged": {
"*": "prettier -uw --cache",
"*.css": "stylelint --cache --fix",
"*.{ts,tsx}": [
"eslint --cache --fix",
"vitest related --run --coverage=false"
]
},
"pnpm": {
"overrides": {
"headers-polyfill": "3.1.2"
}
},
"homepage": "/noteguard/#"
}