forked from notea-org/notea
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.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
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
{
"name": "notea",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "next",
"debug": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write .",
"lint": "eslint . --ext ts --ext tsx --ext js",
"postinstall": "yarn autoclean --force"
},
"repository": "QingWei-Li/notea",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run type-check"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"npm run lint",
"npm run format"
]
},
"dependencies": {
"@atlaskit/tree": "^8.2.0",
"@aws-sdk/client-s3": "^3.10.0",
"@aws-sdk/s3-request-presigner": "^3.10.0",
"@headwayapp/react-widget": "^0.0.4",
"@material-ui/core": "^4.11.3",
"@material-ui/lab": "^4.0.0-alpha.57",
"classnames": "^2.2.6",
"csrf": "^3.1.0",
"dayjs": "^1.10.4",
"escape-string-regexp": "^4.0.0",
"formidable": "^1.2.2",
"highlight.js": "^10.7.2",
"localforage": "^1.9.0",
"lodash": "^4.17.20",
"lzutf8": "^0.6.0",
"markdown-it": "^12.0.6",
"md5": "^2.3.0",
"minio": "^7.0.18",
"nanoid": "^3.1.22",
"next": "^10.1.3",
"next-connect": "^0.10.1",
"next-iron-session": "^4.1.11",
"next-seo": "^4.24.0",
"next-themes": "^0.0.14",
"react": "^17.0.1",
"react-div-100vh": "^0.5.6",
"react-resize-detector": "^6.6.0",
"react-split": "^2.0.9",
"remove-markdown": "^0.3.0",
"rich-markdown-editor": "^11.6.4",
"rosetta": "^1.1.0",
"styled-components": "^5.2.1",
"ua-parser-js": "^0.7.24",
"unstated-next": "^1.1.0",
"use-debounce": "^5.2.1"
},
"devDependencies": {
"@tailwindcss/typography": "^0.4.0",
"@types/classnames": "^2.2.11",
"@types/formidable": "^1.0.32",
"@types/lodash": "^4.14.168",
"@types/markdown-it": "^12.0.1",
"@types/md5": "^2.3.0",
"@types/minio": "^7.0.7",
"@types/node": "^12.12.21",
"@types/react": "^16.9.16",
"@types/react-dom": "^16.9.4",
"@types/styled-components": "^5.1.7",
"@types/ua-parser-js": "^0.7.35",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"autoprefixer": "^10.2.4",
"babel-plugin-lodash": "^3.3.4",
"core-js": "^3.8.3",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"heroicons": "^0.4.2",
"husky": "^5.0.9",
"lint-staged": "^10.5.4",
"next-pwa": "^5.0.6",
"nightwind": "^1.1.6",
"postcss": "^8.2.6",
"prettier": "^2.2.1",
"react-dom": "^17.0.1",
"tailwindcss": "^2.0.3",
"typescript": "4.0"
},
"license": "MIT"
}