forked from DCODE-HQ/DCODE-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 878 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 878 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
{
"name": "dcode",
"version": "0.0.0",
"description": "DCODE is an open-source education platform connecting contributors to real OSS projects.",
"main": "api/src/server.js",
"author": "DevClub",
"license": "Apache-2.0",
"private": true,
"dependencies": {
"bcryptjs": "^3.0.2",
"cors": "^2.8.5",
"express": "^5.1.0",
"express-rate-limit": "^7.5.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.16.1",
"nodemailer": "^7.0.4"
},
"devDependencies": {
"dotenv": "^16.6.1",
"nodemon": "^3.1.10",
"prettier": "^3.6.0"
},
"scripts": {
"dev": "nodemon api/src/server.js",
"start": "node api/src/server.js",
"build": "yarn install && yarn --cwd client install && yarn --cwd client build",
"prettier": "yarn exec prettier . --check",
"prettier-fix": "yarn exec prettier . --write"
},
"type": "module"
}