-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 904 Bytes
/
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
{
"name": "codi-lunch-stats",
"version": "0.0.1",
"description": "Codi lunch stat.",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev-server": "./node_modules/.bin/nodemon server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": "7.9.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stepek/codi-lunch-stats.git"
},
"author": "Kamil Stepczuk <[email protected]>",
"license": "WTFPL",
"bugs": {
"url": "https://github.com/stepek/codi-lunch-stats/issues"
},
"homepage": "https://github.com/stepek/codi-lunch-stats#readme",
"devDependencies": {
"nodemon": "^1.11.0"
},
"dependencies": {
"body-parser": "^1.17.1",
"express": "^4.15.2",
"express-query-parser": "^1.0.2",
"moment": "^2.24.0",
"mongoose": "^5.3.13",
"node-fetch": "^2.3.0"
}
}