-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.74 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
{
"name": "notemd.app",
"version": "0.1.0",
"private": true,
"author": "Cong Dao <[email protected]>",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"postinstall": "husky install",
"pre-commit": "lint-staged",
"prepare": "husky install"
},
"dependencies": {
"@codemirror/basic-setup": "^0.20.0",
"@codemirror/state": "^6.2.0",
"@codemirror/view": "^6.9.1",
"@headlessui/react": "^1.7.13",
"@heroicons/react": "^2.0.16",
"@next/font": "13.1.6",
"@replit/codemirror-vim": "^6.0.6",
"@uiw/react-codemirror": "^4.19.9",
"browser-fs-access": "^0.32.1",
"clsx": "^1.2.1",
"codemirror": "^6.0.1",
"date-fns": "^2.29.3",
"eslint": "8.34.0",
"eslint-config-next": "13.1.6",
"js-base64": "^3.7.5",
"marked": "^4.2.12",
"mousetrap": "^1.6.5",
"mousetrap-global-bind": "^1.1.0",
"next": "13.1.6",
"octokit": "^2.0.14",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.43.5",
"react-hotkeys-hook": "^4.3.7",
"typescript": "4.9.5"
},
"devDependencies": {
"@octokit/types": "^9.0.0",
"@tailwindcss/typography": "^0.5.9",
"@types/codemirror": "^5.60.7",
"@types/js-base64": "^3.3.1",
"@types/marked": "^4.0.8",
"@types/node": "18.13.0",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.10",
"@types/react-modal": "^3.13.1",
"autoprefixer": "^10.4.14",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"tailwindcss": "^3.2.7"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.{ts,tsx}": "eslint --fix"
}
}