-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1 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
{
"name": "kiddieed-node-backend",
"version": "1.0.0",
"description": "Kindergarten Learning System",
"main": "server.js",
"scripts": {
"start": "nodemon server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"server": "nodemon server.js",
"client": "npm run start --prefix ../KiddieEd-react-frontend",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/kORzix/KiddieEd-node-backend.git"
},
"keywords": [
"kids",
"education"
],
"author": "kORzix",
"license": "MIT",
"bugs": {
"url": "https://github.com/kORzix/KiddieEd-node-backend/issues"
},
"homepage": "https://github.com/kORzix/KiddieEd-node-backend#readme",
"dependencies": {
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.1",
"mongoose": "^7.3.2",
"nodemailer": "^6.9.5",
"nodemon": "^3.0.1",
"validator": "^13.11.0"
}
}