-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.52 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
{
"name": "pl-nextra",
"version": "0.0.2",
"description": "PL notes in Nextra",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"saveCourse": "git co -b pl-2425 && git add . && git commit -m 'saved course in branch pl-2425' && git push -u crguezl main",
"save": "git add . && git commit -m 'Update' && git push -u crguezl main",
"next_auth_secret": "echo \"NEXTAUTH_SECRET=$(openssl rand -base64 32)\"",
"deploy": "cp .env.vercel.local .env.production.local && vercel -e NODE_ENV=production --prod; echo 'remember to promote to production'",
"deploy-netlify": "cp .env.netlify.local .env.production.local && npm run build && netlify deploy --prod"
},
"engines": {
"node": ">=18.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crguezl/pl-nextra.git"
},
"author": "Casiano Rodriguez Leon<[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/crguezl/pl-nextra.git/issues"
},
"homepage": "https://github.com/crguezl/pl-nextra.git#readme",
"dependencies": {
"@heroicons/react": "^2.1.1",
"@octokit/graphql": "^7.0.2",
"convert-csv-to-json": "^2.44.0",
"next": "^13.0.6",
"next-auth": "^4.24.5",
"next-mdx-remote": "^4.4.1",
"nextra": "^2.13.2",
"nextra-theme-docs": "^2.13.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-youtube": "^10.1.0",
"swr": "^2.2.5"
},
"devDependencies": {
"@types/node": "18.11.10",
"typescript": "^4.9.3"
}
}