-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.34 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
39
40
41
42
{
"name": "jumpnotes",
"version": "1.0.0",
"description": "JumpNote is a Simple, Quick, Easy to use, Note taking app that \"auto-magically\" backups everything to a server. Using the hottest new technology we built JumpNote using React Native for the app frontend, Node.js for the backend server magic, and used Mongodb to implement our database.",
"main": "server.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"windows": "start cmd /k mongod --dbpath data/db & node server.js",
"clear": "sudo rm -r node_modules & sudo rm -r data/db/*",
"mongo_windows": "mongod --dbpath data",
"mongo_ubuntu": "sudo mongod --dbpath data"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SRJC-Computer-Science-Club/jumpnotes.git"
},
"keywords": [
"notes",
"simple",
"node.js",
"server",
"automatic",
"backup"
],
"author": "oran collins",
"license": "SEE LICENSE IN /LICENSE",
"bugs": {
"url": "https://github.com/SRJC-Computer-Science-Club/jumpnotes/issues"
},
"homepage": "https://github.com/SRJC-Computer-Science-Club/jumpnotes#readme",
"dependencies": {
"express": "^4.15.3",
"mongodb": "^2.2.29",
"opn": "^5.1.0",
"socket.io": "^2.0.3"
},
"devDependencies": {}
}