forked from rasPanda/project-3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 955 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 955 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
{
"name": "building-an-api",
"version": "1.0.0",
"description": "",
"main": "server.js",
"type": "module",
"scripts": {
"test": "mocha __tests__/*_test.js --require __tests__/helper.js --recursive --exit",
"start": "npx nodemon index.js",
"seed": "node db/seed.js",
"build": "cd client; npm run build; cd .."
},
"author": "",
"license": "ISC",
"dependencies": {
"@mapbox/mapbox-gl-geocoder": "^4.7.0",
"axios": "^0.21.1",
"bcrypt": "^5.0.0",
"bulma": "^0.9.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"file-loader": "^6.2.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^3.10.1",
"mongoose": "^5.11.15",
"mongoose-hidden": "^1.9.1",
"mongoose-unique-validator": "^2.0.3",
"nodemailer": "^6.5.0",
"nodemailer-sendgrid-transport": "^0.2.0",
"nodemon": "^2.0.7"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^8.2.1",
"supertest": "^6.0.1"
}
}