This repository was archived by the owner on Apr 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.65 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.65 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "name-that-tune",
"version": "0.1.1",
"description": "Name That Tune game with voice recognition.",
"repository": {
"type": "git",
"url": "https://github.com/drich14/name-that-tune.git"
},
"author": "Dylan Richardson",
"license": "MIT",
"scripts": {
"watch": "./node_modules/.bin/watchify client/game.js client/join.js client/new.js -o public/js/bundle.js",
"build": "./node_modules/.bin/browserify client/game.js client/join.js client/new.js -o public/js/bundle.js",
"startdev": "npm run watch & ./node_modules/.bin/nodemon app.js",
"start": "node app.js",
"test": "./node_modules/.bin/mocha --reporter spec",
"postinstall": "npm rebuild node-sass && npm run build",
"eslint": "./node_modules/.bin/eslint **/*.js"
},
"dependencies": {
"apiai": "^4.0.3",
"axios": "^0.17.1",
"bcrypt-nodejs": "^0.0.3",
"bluebird": "^3.5.0",
"body-parser": "^1.17.2",
"browserify": "^16.1.0",
"browserify-middleware": "^8.0.0",
"bufferutil": "^3.0.3",
"chalk": "^2.1.0",
"cheerio": "^1.0.0-rc.2",
"clockwork": "^0.1.4",
"compression": "^1.7.0",
"connect-mongo": "^1.3.2",
"cookie-parser": "^1.4.3",
"dotenv": "^4.0.0",
"errorhandler": "^1.5.0",
"express": "^4.15.4",
"express-flash": "^0.0.2",
"express-session": "^1.15.5",
"express-status-monitor": "^1.0.0",
"express-validator": "^3.2.1",
"fs": "^0.0.1-security",
"fuzzyset": "^0.0.4",
"js-cookie": "^2.2.0",
"lob": "^4.1.1",
"lusca": "^1.5.1",
"mongoose": "^4.11.7",
"morgan": "^1.8.2",
"multer": "^1.3.0",
"node-sass": "^4.7.2",
"node-sass-middleware": "^0.11.0",
"nodemailer": "^4.0.1",
"nodemon": "^1.14.12",
"pug": "^2.0.0-rc.3",
"request": "^2.81.0",
"rhyme": "^0.0.3",
"socket.io": "^2.0.4",
"utf-8-validate": "^4.0.0",
"validator": "^8.0.0",
"watchify": "^3.10.0"
},
"devDependencies": {
"chai": "^4.1.1",
"eslint": "^4.17.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-plugin-chai-friendly": "^0.4.0",
"eslint-plugin-import": "^2.7.0",
"mocha": "^5.0.0",
"sinon": "^3.2.1",
"sinon-mongoose": "^2.0.2",
"supertest": "^3.0.0"
},
"eslintConfig": {
"extends": "airbnb-base",
"rules": {
"comma-dangle": 0,
"consistent-return": 0,
"no-param-reassign": 0,
"no-underscore-dangle": 0,
"no-shadow": 0,
"no-console": 0,
"no-plusplus": 0,
"no-unused-expressions": 0,
"chai-friendly/no-unused-expressions": 2
},
"env": {
"jasmine": true,
"mocha": true,
"node": true
},
"plugins": [
"chai-friendly"
]
}
}