-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.33 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
43
44
{
"name": "Plantbase-Me",
"version": "1.0.0",
"description": "![A Perfect Day For Bananafish, by J. D. Salinger](https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1447411550l/27819869.jpg)",
"main": "index.js",
"dependencies": {
"body-parser": "^1.19.0",
"custom-env": "^1.0.2",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
"pg-promise": "^9.1.4",
"tap-spec": "^5.0.0",
"tape": "^4.11.0",
"tape-promise": "^4.0.0",
"url": "^0.11.0"
},
"devDependencies": {
"eslint": "^6.3.0",
"jest": "^24.9.0",
"nodemon": "^1.19.2",
"supertest": "^4.0.2"
},
"scripts": {
"test": "NODE_ENV=test tape src/tests/*.test.js | tap-spec",
"start": "NODE_ENV=production node src/index.js",
"dev": "NODE_ENV=local nodemon src/index.js",
"lint": "eslint *.*",
"db:build": "NODE_ENV=production node src/model/database/db_build.js",
"db:build-local": "NODE_ENV=local node src/model/database/db_build.js",
"watch": "node src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fac-17/Plantbase-Me.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fac-17/Plantbase-Me/issues"
},
"homepage": "https://github.com/fac-17/Plantbase-Me#readme"
}