-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 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
40
41
42
43
44
45
46
47
48
49
{
"name": "foodiction",
"version": "1.0.0",
"description": "A Canteen Automation System",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "xo && jest"
},
"author": "",
"license": "MIT",
"dependencies": {
"bcrypt": "^1.0.3",
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"cron": "^1.3.0",
"express": "^4.16.1",
"express-session": "^1.15.6",
"mongodb": "^2.2.31",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"ws": "^3.2.0"
},
"devDependencies": {
"faker": "^4.1.0",
"frisby": "^2.0.8",
"jest": "^21.2.1",
"puppeteer": "^0.13.0",
"xo": "^0.18.2"
},
"xo": {
"env": [
"node",
"browser",
"jest"
],
"ignores": [
"static/**/*"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/ananya0996/foodiction.git"
},
"bugs": {
"url": "https://github.com/ananya0996/foodiction/issues"
},
"homepage": "https://github.com/ananya0996/foodiction#readme"
}