-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 935 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
34
35
36
37
38
39
40
{
"name": "pet-sitter",
"version": "1.0.0",
"description": "",
"main": "./src/server.js",
"scripts": {
"dev": "nodemon src/server.js",
"start": "node src/server.js",
"test": "NODE_ENV=test nodemon testers/**/*.test.js",
"test2": "NODE_ENV=test node src/queries/sittersCRUD.js",
"build": "node ./src/database/db_build.js"
},
"engines": {
"node": "10.15.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WebAhead5/PetSitter.git"
},
"keywords": [
"heroku"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/WebAhead5/PetSitter/issues"
},
"homepage": "https://github.com/WebAhead5/PetSitter#readme",
"devDependencies": {
"supertest": "^4.0.2",
"tap-spec": "^5.0.0",
"tape": "^4.13.2"
},
"dependencies": {
"dotenv": "^8.2.0",
"mime-types": "^2.1.26",
"nodemon": "^2.0.3",
"pg": "^8.0.3"
}
}