-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.67 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
{
"name": "proxzima",
"version": "0.2.3",
"license": "MIT",
"author": {
"name": "Pratik Pingale",
"url": "https://proxzima.dev",
"email": "[email protected]"
},
"homepage": "https://proxzima.dev",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"export": "next export",
"deploy": "rm -rf node_modules/.cache && rm -rf .next && rimraf out && next build && next export && touch out/.nojekyll && touch out/CNAME && echo \"proxzima.dev\" >> out/CNAME && git add out/ && git commit -m \"🚀 Deploy Webpage to gh-pages\" && git push origin `git subtree split --prefix out master`:gh-pages --force",
"prepare": "husky install"
},
"dependencies": {
"axios": "^0.27.2",
"next": "12.1.6",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-github-calendar": "^3.3.1",
"react-markdown": "^8.0.3",
"react-syntax-highlighter": "^15.5.0",
"rehype-raw": "^6.1.1",
"remark-gfm": "^3.0.1"
},
"devDependencies": {
"@types/node": "17.0.32",
"@types/react": "18.0.9",
"@types/react-dom": "18.0.3",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"autoprefixer": "^10.4.7",
"babel-plugin-transform-define": "^1.3.0",
"cssnano": "^5.1.12",
"eslint": "8.15.0",
"eslint-config-next": "^12.1.6",
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.1",
"postcss": "^8.4.13",
"prettier": "^2.6.2",
"tailwindcss": "^3.0.24",
"typescript": "^4.6.4"
}
}