-
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.28 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.28 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": "laira",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"scripts": {
"test": "jest",
"build": "babel src --out-dir=dist",
"start": "node dist/server.js",
"watch": "nodemon --trace-warnings --exec babel-node src/server.js",
"fetch-data": "babel-node src/tools/googlePlacesStripper.js"
},
"author": "Krzysztof Czereczon",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.1",
"@babel/node": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.13.5",
"babel-polyfill": "^6.26.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"superagent": "^6.1.0",
"supertest": "^6.1.3"
},
"dependencies": {
"@babel/runtime": "^7.15.4",
"@mapbox/polyline": "github:mapbox/polyline",
"@shelf/jest-mongodb": "^1.2.3",
"async": "^3.2.0",
"axios": "^0.21.1",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cloudinary": "^1.26.2",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"form-data": "^2.3.3",
"got": "^9.6.0",
"joi": "^17.4.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.4",
"mongoose": "^5.11.15",
"multer": "^1.4.2",
"streamifier": "^0.1.1"
}
}