-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
69 lines (69 loc) · 1.74 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
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "mqp-server",
"version": "0.8.2",
"description": "musiqpad self-hosted server",
"main": "server-package.js",
"author": "musiqpad Team <support@musiqpad.com>",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/musiqpad/mqp-server.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/musiqpad/mqp-server/issues"
},
"homepage": "https://github.com/musiqpad/mqp-server#readme",
"scripts": {
"start": "node ./mqp.js start",
"stop": "node ./mqp.js stop",
"restart": "node ./mqp.js restart",
"log": "node ./mqp.js log",
"update": "node ./mqp.js update",
"test": "ava --verbose"
},
"dependencies": {
"basic-logger": "^0.4.4",
"bcrypt-nodejs": "0.0.3",
"chalk": "^1.0.0",
"clean-css": "^3.4.9",
"compression": "^1.6.2",
"daemon": "^1.1.0",
"deasync": "^0.1.4",
"download-git-repo": "^0.1.2",
"durationjs": "^1.1.1",
"ejs": "^2.4.2",
"express": "^4.13.3",
"extend": "^3.0.0",
"file-tail": "^0.3.0",
"forever": "^0.15.1",
"fs-extra": "^0.30.0",
"helmet": "^2.1.1",
"hjson": "^1.8.4",
"jsonwebtoken": "^7.1.6",
"leveldown": "1.4.4",
"levelup": "^1.3.1",
"mongodb": "^2.2.4",
"mysql": "^2.10.2",
"nconf": "^0.8.4",
"nodemailer": "^2.1.0",
"ps-tree": "^1.0.1",
"request": "^2.74.0",
"update-notifier": "^1.0.2",
"ws": "^1.1.1",
"xoauth2": "^1.1.0",
"yesno": "0.0.1"
},
"devDependencies": {
"ava": "^0.15.2",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.11.1",
"eslint-plugin-jsx-a11y": "^1.5.5",
"eslint-plugin-react": "^5.2.2"
},
"ava": {
"concurrency": 5,
"failFast": true
}
}