-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.17 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
{
"name": "greenmap-api",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "mocha tests/**/*.test.js --exit",
"test-watch": "nodemon --exec \"npm test\"",
"lint": "./node_modules/.bin/eslint --ignore-path .gitignore .",
"lint-fix": " ./node_modules/.bin/eslint --fix --ignore-path .gitignore ."
},
"engines": {
"node": "10.10.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reisman-internship-2019-greenmap/GreenMap-api.git"
},
"author": "",
"license": "ISC",
"homepage": "https://github.com/reisman-internship-2019-greenmap/GreenMap-api#readme",
"dependencies": {
"barcodelookup": "^1.0.2",
"body-parser": "^1.19.0",
"dotenv": "^8.0.0",
"express": "^4.16.4",
"mongodb": "^3.2.7",
"mongoose": "^5.7.5",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"wikidata-sdk": "^6.4.0",
"xmlhttprequest": "^1.8.0"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-strongloop": "^2.1.0",
"expect": "^24.7.1",
"mocha": "^6.1.4",
"nodemon": "^1.18.11"
}
}