This repository has been archived by the owner on Sep 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.3 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
{
"name": "eyedeer",
"version": "1.0.0",
"description": "secure and simple oauth2 service",
"main": "index.js",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc",
"compile": "npm run build",
"start": "npm run compile && node --require source-map-support/register dist/server/Server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/opencode-mit/eyedeer.git"
},
"keywords": [
"oauth2"
],
"author": "open-code",
"license": "MIT",
"bugs": {
"url": "https://github.com/opencode-mit/eyedeer/issues"
},
"homepage": "https://github.com/opencode-mit/eyedeer#readme",
"devDependencies": {
"@types/assert": "^1.5.6",
"@types/bcrypt": "^5.0.0",
"@types/connect-ensure-login": "^0.1.7",
"@types/connect-flash": "^0.0.37",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/errorhandler": "^1.5.0",
"@types/express": "^4.17.15",
"@types/express-session": "^1.17.5",
"@types/mysql": "^2.15.21",
"@types/node": "^18.11.18",
"@types/nodemailer": "^6.4.7",
"@types/oauth2orize": "^1.8.10",
"@types/passport": "^1.0.11",
"@types/passport-http": "^0.3.9",
"@types/passport-http-bearer": "^1.0.37",
"@types/passport-local": "^1.0.34",
"@types/passport-oauth2-client-password": "^0.1.2",
"@types/passport-remember-me": "^0.0.0",
"browserify": "^17.0.0",
"rimraf": "^3.0.2",
"typescript": "^4.9.4"
},
"dependencies": {
"bcrypt": "^5.1.0",
"canvas": "^2.11.0",
"connect-ensure-login": "^0.1.1",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.0.3",
"edgedb": "^1.0.2",
"ejs": "^3.1.8",
"errorhandler": "^1.5.1",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"express-mysql-session": "^2.1.8",
"express-session": "^1.17.3",
"http-status-codes": "^2.2.0",
"jdenticon": "^3.2.0",
"mysql2": "^2.3.3",
"nodemailer": "^6.8.0",
"oauth2orize": "^1.11.1",
"passport": "^0.6.0",
"passport-http": "^0.3.0",
"passport-http-bearer": "^1.0.1",
"passport-local": "^1.0.0",
"passport-oauth2-client-password": "^0.1.2",
"source-map-support": "^0.5.21",
"vue": "^3.2.45",
"vue-tsc": "^1.0.18"
}
}