-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
85 lines (85 loc) · 2.64 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
{
"name": "obsidian-bookmarklet-maker",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --port 5000",
"generate-rss": "node utils/generate-rss.js",
"submit-indexnow": "node utils/indexnow.mjs",
"build": "npm run generate-rss && next build",
"start": "next start",
"postinstall": "prisma generate",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"prettier": "prettier --write .",
"test": "jest",
"docs": "jsdoc -c jsdoc.config.json"
},
"dependencies": {
"@amplitude/analytics-browser": "^2.11.11",
"@microsoft/applicationinsights-clickanalytics-js": "3.3.2",
"@microsoft/applicationinsights-react-js": "17.3.2",
"@microsoft/applicationinsights-web": "3.3.2",
"@next/third-parties": "^14.2.14",
"@prisma/client": "5.19.1",
"@tailwindcss/typography": "^0.5.2",
"autoprefixer": "10.4.2",
"dompurify": "^3.2.3",
"flowbite-react": "^0.10.2",
"framer-motion": "^11.11.17",
"gray-matter": "^4.0.3",
"history": "^5.3.0",
"moment": "2.29.4",
"next": "^14.2.15",
"next-sitemap": "^4.2.3",
"node-fetch": "^3.3.2",
"postcss": "8.4.31",
"postcss-cli": "^11.0.0",
"prismjs": "^1.29.0",
"react": "^19.0.0-rc-1460d67c-20241003",
"react-dom": "^19.0.0-rc-1460d67c-20241003",
"react-fast-marquee": "^1.6.5",
"react-feather": "^2.0.10",
"react-icons": "^5.3.0",
"react-simple-code-editor": "^0.14.1",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.1",
"rehype-toc": "^3.0.2",
"remark": "^15.0.1",
"remark-html": "^16.0.1",
"remark-rehype": "^11.1.1",
"showdown": "^2.0.0",
"tailwindcss": "3.0.19",
"unified": "^11.0.5",
"virtua": "^0.36.3",
"xml2js": "^0.6.2",
"zustand": "^5.0.3"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/jest": "^29.5.14",
"@types/node": "22.5.5",
"@types/react": "18.3.8",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"better-docs": "^2.7.3",
"cssnano": "^7.0.6",
"eslint": "^9.16.0",
"eslint-config-next": "^15.0.0-rc.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^15.13.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdoc": "^4.0.4",
"prettier": "^3.4.1",
"prisma": "5.19.1",
"ts-node": "^10.9.2",
"typescript": "5.6.2",
"typescript-eslint": "^8.16.0"
}
}