-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 959 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 959 Bytes
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
{
"name": "tpkg-host",
"version": "1.0.0",
"description": "TPKG host website with Google OAuth, repo indexing, and dashboard",
"main": "index.js",
"author": "Morgan Miller <morganmilstone983@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "next dev -p 2000",
"build": "next build",
"start": "next start -p 2000",
"lint": "next lint",
"db:build": "node schema.js"
},
"keywords": [
"tpkg",
"package-manager",
"nextjs",
"postgresql",
"oauth",
"github"
],
"dependencies": {
"bcrypt": "^6.0.0",
"highlight.js": "^11.11.1",
"jsonwebtoken": "^9.0.3",
"next": "latest",
"next-auth": "latest",
"node-fetch": "latest",
"pg": "latest",
"react": "latest",
"react-dom": "latest",
"react-markdown": "^10.1.0",
"rehype-highlight": "^7.0.2",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"eslint": "latest",
"eslint-config-next": "latest"
}
}