-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.42 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
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "devfoundry-backend",
"version": "2.0.0",
"description": "Scalable Node.js + Express.js backend for DevFoundry — featuring GitHub OAuth, JWT authentication, role-based access, build submission workflows, and curated build APIs.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"dev:local": "cross-env NODE_ENV=development nodemon index.js",
"script": "cross-env NODE_ENV=development node scripts/seedDB.js",
"script:prod": "cross-env NODE_ENV=production node scripts/seedDB.js",
"prettify": "npx lint-staged",
"prepare": "husky"
},
"lint-staged": {
"*.{js,json,md}": "prettier --write"
},
"keywords": [
"devfoundry",
"express",
"nodejs",
"github-oauth",
"jwt-auth",
"rest-api",
"full-stack",
"build-submission",
"developer-platform"
],
"repository": {
"type": "git",
"url": "https://github.com/chetannada/DevFoundry-Backend"
},
"author": "Chetan Nada",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"@google/genai": "^1.50.1",
"axios": "^1.11.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv-flow": "^4.1.0",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.17.1"
},
"devDependencies": {
"cross-env": "^10.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"nodemon": "^3.1.10",
"prettier": "^3.6.2"
}
}