-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1.02 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
{
"name": "bouquet-server",
"version": "0.0.2",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"dev:server": "DEBUG=bouquet:* nodemon index.js",
"dev:worker": "DEBUG=bouquet:* nodemon worker.js",
"dev": "npm run dev:server & npm run dev:worker"
},
"author": "Arne Schlüter",
"license": "ISC",
"dependencies": {
"@mapbox/geojsonhint": "^1.2.1",
"body-parser": "^1.15.2",
"connect-mongo": "^1.3.2",
"debug": "^2.3.2",
"dotenv": "^2.0.0",
"express": "^4.14.0",
"express-hbs": "^1.0.3",
"express-session": "^1.14.2",
"jsonwebtoken": "^7.1.9",
"jwk-to-pem": "^1.2.5",
"moment": "^2.17.1",
"mongoose": "^4.6.5",
"mongoose-timestamp": "^0.6.0",
"morgan": "^1.7.0",
"node-fetch": "^1.6.3",
"nodemailer": "^3.0.0",
"promise-parallel-throttle": "^2.2.0",
"redis": "^2.6.3",
"uuid": "^2.0.3"
},
"devDependencies": {
"nodemon": "^1.11.0"
}
}