-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.29 KB
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
45
46
47
48
49
50
51
{
"name": "search-api",
"private": false,
"version": "1.0.0",
"description": "simple search-api",
"main": "index.js",
"scripts": {
"start": "node server.js",
"lint": "eslint src test",
"lint: fix": "eslint --fix src test",
"test": "yarn lint && NODE_ENV=test && mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iamgkstack/search-api.git"
},
"author": "Gaurav Kumar <gauravkumar5295@gmail.com>",
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/iamgkstack/search-api/master/LICENSE"
}
],
"bugs": {
"url": "https://github.com/iamgkstack/search-api/issues"
},
"homepage": "https://github.com/iamgkstack/search-api#readme",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"mongoose": "^5.6.11",
"request": "^2.88.0"
},
"devDependencies": {
"async": "^3.1.0",
"chai": "^4.2.0",
"eslint": "^6.2.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"faker": "^4.1.0",
"glob": "^7.1.4",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"sinon": "^7.4.1",
"supertest": "^4.0.2"
}
}