-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 899 Bytes
/
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
{
"name": "personalize-me",
"version": "1.0.0",
"description": "This is an effort to make an open source API for personalized scheduling of things and making things easier in your life.",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"lint": "eslint server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/nimit2801/personalize-me.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nimit2801/personalize-me/issues"
},
"homepage": "https://github.com/nimit2801/personalize-me#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"mongoose": "^5.13.3"
},
"devDependencies": {
"eslint": "^7.30.0"
}
}