-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 990 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 990 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
35
36
37
38
39
40
41
42
{
"name": "api-handler",
"version": "1.0.0",
"description": "sample backend to handle api requests",
"main": "index.js",
"scripts": {
"start": "node src/app.js",
"dev": "env-cmd -f ./config/dev.env nodemon src/app.js",
"test": "env-cmd -f ./config/test.env jest --watch --runInBand"
},
"jest": {
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheBigR/api-handler.git"
},
"keywords": [
"node",
"api",
"express"
],
"author": "Roy Nevo",
"license": "ISC",
"bugs": {
"url": "https://github.com/TheBigR/api-handler/issues"
},
"homepage": "https://github.com/TheBigR/api-handler#readme",
"dependencies": {
"express": "^4.17.1",
"lodash": "^4.17.21",
"mongodb": "^4.1.3",
"mongoose": "^6.0.11",
"request": "^2.88.2",
"request-promise": "^4.2.6"
},
"devDependencies": {
"env-cmd": "^10.1.0",
"jest": "^27.2.5",
"nodemon": "^2.0.13"
}
}