-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 986 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 986 Bytes
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
{
"name": "emmethub_projects_rest_api",
"version": "1.0.0",
"description": "a rest-api that provides clients with all projects by emmethub.com",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon app.js",
"start": "node app.js",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix frontend && npm run build --prefix frontend"
},
"engines": {
"node": "18.12.1",
"npm": "8.19.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kimanicharles911/emmethub_projects_rest_api.git"
},
"author": "Charles Kimani & EmmetHub",
"license": "MIT",
"bugs": {
"url": "https://github.com/kimanicharles911/emmethub_projects_rest_api/issues"
},
"homepage": "https://github.com/kimanicharles911/emmethub_projects_rest_api#readme",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"helmet": "^4.6.0",
"nodemon": "^2.0.14"
}
}