-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.82 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
{
"name": "mdstudio",
"version": "1.0.0",
"description": "The modern and cross-platform blogging/note-taking/publishing platform using Markdown/HTML.",
"main": "next.config.js",
"repository": "https://github.com/alphacoma18/mdstudio.git",
"author": "Alpha Romer Coma <[email protected]>",
"license": "UNLICENSED",
"scripts": {
"dev": "next dev",
"build": "yarn run partytown && next build",
"partytown": "partytown copylib public/~partytown",
"start": "next start",
"lint": "next lint && stylelint \"**/*module.css\"",
"prepare": "husky install",
"prettier": "prettier --write .",
"debug": "yarn run lint && yarn run prettier && yarn run build",
"bubblewrap": "npx bubblewrap init --manifest=https://markdownstudio.vercel.app/manifest.webmanifest",
"killport": "node -e \"const kill = require('kill-port');const p = 3000; setTimeout(() => kill(p, 'tcp').then(console.log('killed 3000'),process.exit(0)).catch(console.log('3000 not killed'),process.exit(0)), 1000)\"",
"removeNext": "node -e \"const fs = require('fs');const p = '.next';try {fs.rmdirSync(p, { recursive: true });} catch (e) {console.warn('Error folder:', p, e);}process.exit(0);\""
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@builder.io/partytown": "^0.10.1",
"@next-auth/mongodb-adapter": "^1.1.3",
"@typegoose/typegoose": "^12.4.0",
"@vercel/analytics": "^1.2.2",
"axios": "^1.6.8",
"cloudinary": "^2.2.0",
"dompurify": "^3.1.0",
"mongodb": "^6.5.0",
"mongoose": "^8.3.2",
"next": "^14.2.2",
"next-auth": "^4.24.7",
"next-pwa": "^5.6.0",
"nextjs-fonts": "^0.22.0",
"nextjs-progressbar": "^0.0.16",
"nodemailer": "^6.9.13",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-simplemde-editor": "^5.2.0",
"sharp": "^0.33.3"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@next/eslint-plugin-next": "^14.2.2",
"@types/dompurify": "^3.0.5",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint-plugin-prettier": "^3.1.3",
"@types/next-pwa": "^5.6.9",
"@types/node": "^20.12.7",
"@types/nodemailer": "^6.4.14",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"@types/sharp": "^0.31.1",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"easymde": "^2.18.0",
"eslint": "^9.1.1",
"eslint-config-next": "^14.2.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.0.11",
"kill-port": "^2.0.1",
"loader-utils": "^3.2.1",
"next-sitemap": "^4.2.3",
"prettier": "^3.2.5",
"stylelint": "^16.4.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recommended": "^14.0.0",
"stylelint-order": "^6.0.4",
"ts-standard": "^12.0.2",
"typescript": "^5.4.5"
}
}