forked from agorafoundation/agora
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.6 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
{
"name": "agora",
"version": "1.0.0",
"description": "Agora: Open, decentralized learning system",
"main": "server/agora.js",
"dependencies": {
"bcrypt": "^5.0.1",
"connect-pg-simple": "^7.0.0",
"cors": "^2.8.5",
"device-detector-js": "^3.0.0",
"dotenv": "^10.0.0",
"ejs": "^3.1.8",
"express": "^4.18.2",
"express-fileupload": "^1.4.0",
"express-rate-limit": "^7.1.5",
"express-session": "^1.17.2",
"google-auth-library": "^8.7.0",
"node-fetch": "^2.6.7",
"nodemailer": "^6.7.2",
"openai": "^3.3.0",
"path": "^0.12.7",
"pg": "^8.6.0",
"quill": "^1.3.6",
"stripe": "^8.191.0",
"suneditor": "^2.43.9",
"swagger-jsdoc": "^6.2.1",
"swagger-ui-express": "^4.5.0",
"uuid": "^8.3.2",
"yamljs": "^0.3.0",
"zod": "^3.19.1"
},
"scripts": {
"start": "node ./server/agora.js",
"dev": "nodemon ./server/agora.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint-full": "eslint ./",
"lint-client": "eslint ./client",
"lint-server": "eslint ./server",
"lint-full-fix": "eslint . --fix",
"lint-server-fix": "eslint ./server --fix",
"lint-client-fix": "eslint ./server --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/briangormanly/agora.git"
},
"keywords": [
"agora"
],
"author": "brian.gormanly",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/briangormanly/agora/issues"
},
"homepage": "https://github.com/briangormanly/agora#readme",
"devDependencies": {
"eslint": "^8.54.0",
"nodemon": "^3.0.1"
}
}