-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 820 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 820 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
33
34
{
"name": "api-starter",
"version": "1.0.0",
"description": "backend starter built with nodejs",
"main": "index.js",
"scripts": {
"test": "node index.js",
"start": "node ./bin/www",
"dev": "nodemon ./bin/www"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grafisaholic/node-api-starter.git"
},
"keywords": [
"nodejs",
"mongodb"
],
"author": "dev@grafishaolic.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/grafisaholic/node-api-starter/issues"
},
"homepage": "https://github.com/grafisaholic/node-api-starter#readme",
"dependencies": {
"body-parser": "^1.19.1",
"cors": "^2.8.5",
"express": "^4.17.2",
"kue": "^0.11.6",
"mongoose": "^6.3.8",
"morgan": "^1.10.0",
"node-color-log": "^9.0.0"
}
}