-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.05 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.05 KB
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
{
"name": "mern-github-yt",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"dev": "nodemon backend/server.js",
"build": "npm install",
"start": "node backend/server.js",
"clean-install": "rm -rf node_modules frontend/node_modules && npm install && npm install --prefix frontend --production=false",
"art:create-samples": "node create-sample-art.js all",
"art:preview": "node contribution-art-example.js preview",
"art:generate": "node contribution-art-example.js generate",
"hackathons": "node fetchHackathons.js",
"hackathons:help": "node fetchHackathons.js --help"
},
"type": "module",
"engines": {
"node": "20"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.12.2",
"cors": "^2.8.5",
"dotenv": "^16.4.2",
"express": "^4.18.2",
"express-rate-limit": "^8.1.0",
"express-session": "^1.18.0",
"helmet": "^8.1.0",
"mongoose": "^8.1.1",
"node-fetch": "^3.3.0",
"passport": "^0.7.0",
"passport-github2": "^0.1.12"
},
"devDependencies": {
"nodemon": "^3.0.3"
}
}