-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 loc) · 1.48 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
50
51
52
53
54
55
56
57
{
"name": "chaddon",
"version": "0.2.1",
"license": "LICENSE",
"description": "A NodeJS socket server that connects users to a variety of channels all within a browser extension.",
"keywords": [
"chaddon, chrome, browser, addon, extension"
],
"repository": "https://github.com/marcobeltempo/chaddon",
"author": "Michael Pierre, Even Davies, Geoff McCollam, Marco Beltempo",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "~1.15.2",
"connect-flash": "~0.1.1",
"connect-mongo": "^2.0.1",
"connect-redis": "^3.3.3",
"cookie-parser": "~1.4.3",
"dotenv": "^5.0.1",
"ejs": "~2.5.2",
"express": "^4.14.0",
"express-session": "^1.14.2",
"mongoose": "~4.13.1",
"morgan": "~1.7.0",
"passport": "~0.3.2",
"passport-google-oauth": "~1.0.0",
"passport-local": "~1.0.0",
"passport.socketio": "^3.7.0",
"pg": "7.4.1",
"redis": "^2.8.0",
"socket.io": "^2.1.0",
"socket.io-adapter": "^1.1.0",
"socket.io-client": "^2.0.4",
"socket.io-parser": "^3.2.0"
},
"devDependencies": {
"debug": "^3.1.0",
"eslint": "^4.19.1",
"nodemon": "^1.17.2",
"npm-run-all": "^4.1.2"
},
"engines": {
"node": ">= 8.9.4"
},
"nodemonConfig": {
"ignore": [
"browser_extension/*",
"docs/*"
],
"delay": "1500"
},
"scripts": {
"start": "nodemon ./src/chaddon.js",
"test:lint": "eslint .",
"test:lint:fix": "eslint . --fix",
"test": "npm run-s test:lint"
}
}