-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.27 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.27 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
{
"name": "betterbikebrusselsbackend",
"version": "1.0.0",
"description": "server for the betterbikebrussels application",
"main": "app.js",
"scripts": {
"prettier": "npx prettier --write . ",
"lint": "npx eslint api/** --fix",
"start": "node .",
"dev": "nodemon ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/oSoc20/better-bike-brussels-backend.git"
},
"keywords": [
"betterbike"
],
"author": "Wout Verbiest",
"license": "MIT",
"bugs": {
"url": "https://github.com/oSoc20/better-bike-brussels-backend/issues"
},
"homepage": "https://github.com/oSoc20/better-bike-brussels-backend#readme",
"dependencies": {
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"geo-distance": "^0.2.0",
"geojson": "^0.5.0",
"json-query": "^2.2.2",
"memory-cache": "^0.2.0",
"mysql2": "^2.1.0",
"osmtogeojson": "^3.0.0-beta.4",
"qs": "^6.9.4",
"sequelize": "^6.3.1",
"sort-json-array": "^0.1.7",
"validator": "^13.1.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.5.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"node-xlsx": "^0.15.0",
"nodemon": "^2.0.4",
"prettier": "2.0.5"
}
}