-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.47 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
{
"private": true,
"scripts": {
"dev": "pm2 stop --silent MonitorNotion; pm2 delete --silent MonitorNotion; pm2 --name MonitorNotion start 'npm run monitor' && next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"deploy": " time npm run export:notion && time npm run build && time python3 infra/deploy.py",
"monitor": "node infra/monitorNotion.js",
"export:notion": "node infra/exportNotion.js"
},
"dependencies": {
"@chakra-ui/react": "^2.8.2",
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-brands-svg-icons": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.5.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"autoprefixer": "^10.4.16",
"framer-motion": "^10.16.12",
"gray-matter": "^4.0.3",
"mdx-prism": "^0.3.4",
"next": "^14.0.3",
"next-mdx-remote": "^4.4.1",
"next-themes": "^0.2.1",
"pixi.js": "^7.3.2",
"postcss": "^8.4.32",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-tsparticles": "^2.12.2",
"rehype-raw": "^7.0.0",
"remark": "^15.0.1",
"remark-html": "^16.0.1",
"rimraf": "^5.0.5",
"sass": "^1.69.5",
"tailwindcss": "^3.3.6",
"tsparticles": "^2.12.0"
},
"devDependencies": {
"@mdx-js/loader": "^3.0.0",
"@next/mdx": "^14.0.3",
"@notionhq/client": "^2.2.13",
"crypto-js": "^4.2.0",
"notion-to-md": "^3.1.1",
"sharp": "^0.33.0",
"uuid": "^9.0.1"
}
}