-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.94 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
{
"name": "opennotes",
"description": "An open-source, offline-capable note-taking application, designed to capture and share your ideas freely and efficiently, anytime, anywhere.",
"keywords": [
"note-taking",
"open-source",
"offline-capable",
"ideas",
"PWA",
"productivity",
"free"
],
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"start": "vite",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"format": "prettier --write src/**/*.{ts,tsx}",
"lint": "eslint --fix src/**/*.{ts,tsx}",
"test": "npm run format && npm run lint",
"prepare": "husky install"
},
"dependencies": {
"idb": "^7.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-quill": "^2.0.0"
},
"devDependencies": {
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-helmet": "^6.1.6",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.57.1",
"@vitejs/plugin-react-swc": "^3.0.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"husky": "^8.0.0",
"postcss": "^8.4.23",
"prettier": "2.8.8",
"tailwindcss": "^3.3.2",
"tailwindcss-safe-area": "^0.2.2",
"typescript": "^5.0.4",
"vite": "^4.3.2",
"workbox-build": "^6.5.4"
},
"author": "@slimcandy",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/slimcandy/openNotes.git"
},
"bugs": {
"url": "https://github.com/slimcandy/openNotes/issues"
},
"homepage": "https://note.js.garden"
}