-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.11 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.11 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
{
"name": "pawsio-server",
"version": "1.0.0",
"description": "server to be used for pawsio app",
"main": "server.js",
"directories": {
"test": "test"
},
"scripts": {
"pretest": "eslint .",
"test": "mocha",
"start": "node server.js",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/QuantumArchive/pawsio-server.git"
},
"keywords": [
"pet",
"iot"
],
"author": "Caitlin Araldi, Chris Bruner, Nathan Hugon, Michelle Sri",
"license": "MIT",
"bugs": {
"url": "https://github.com/QuantumArchive/pawsio-server/issues"
},
"homepage": "https://github.com/QuantumArchive/pawsio-server#readme",
"dependencies": {
"bcryptjs": "^2.4.0",
"body-parser": "^1.15.2",
"cors": "^2.8.1",
"debug": "^2.2.0",
"dotenv": "^2.0.0",
"express": "^4.14.0",
"jsonwebtoken": "^7.2.1",
"mongoose": "^4.7.1",
"morgan": "^1.7.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"eslint": "^3.12.0",
"mocha": "^2.5.3",
"nodemon": "^1.9.2"
},
"engines": {
"node": "6.8.0"
}
}