-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.03 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
{
"name": "yjmpd-node",
"version": "1.0.0",
"description": "Node version of the yjmp daemon",
"main": "src/index.js",
"repository": {},
"author": "[email protected]",
"license": "MIT",
"scripts": {
"dev-debug": "yarn run build && yarn run start-dev",
"dev-api": "babel-watch src/index.js",
"dev-scrobbler": "babel-watch src/scrobbler.js",
"build": "babel src -d lib",
"start": "node lib/index.js",
"start-dev": "node --inspect lib/index.js"
},
"dependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-preset-env": "^1.1.8",
"babel-preset-es2015": "^6.22.0",
"babel-watch": "^2.0.6",
"babelrc-rollup": "^3.0.0",
"body-parser": "^1.16.0",
"eslint": "^3.19.0",
"express": "^4.14.1",
"filehound": "^1.16.1",
"filequeue": "^0.5.0",
"jwt-simple": "^0.5.1",
"kue": "^0.11.5",
"moment": "^2.17.1",
"mongodb": "^2.2.22",
"music-metadata": "^0.6.1",
"mysql": "^2.13.0",
"node-id3": "^0.0.9"
}
}