-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 828 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 828 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
{
"name": "fcc-basejumps",
"version": "1.0.0",
"description": "My general purpose API server",
"main": "index.js",
"scripts": {
"start": "node ./server/app.js",
"dev-start": "nodemon ./server/app.js",
"mongo": "mongod --port 27017 --dbpath=./server/data --nojournal"
},
"repository": "https://github.com/PortableStick/fcc-backendapis",
"author": "Gregory Smith",
"license": "ISC",
"dependencies": {
"body-parser": "^1.15.0",
"express": "^4.13.3",
"express-handlebars": "^3.0.0",
"express-rate-limit": "^2.5.0",
"mongodb": "^2.1.18",
"mongoose": "^4.4.14",
"multer": "^1.1.0",
"nodemailer": "^2.5.0",
"winston": "^2.2.0",
"xml2js": "^0.4.17"
},
"devDependencies": {
"flightplan": "^0.6.14",
"typescript": "^2.5.2",
"nodemon": "^1.9.2"
}
}