-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "koel",
"author": "Phan An <[email protected]>",
"homepage": "http://koel.phanan.net",
"license": "MIT",
"description": "A personal music streaming server that works",
"keywords": [
"music",
"audio",
"stream"
],
"repository": {
"type": "git",
"url": "https://github.com/phanan/koel"
},
"dependencies": {
"alertify.js": "^1.0.12",
"axios": "^0.15.3",
"blueimp-md5": "^2.3.0",
"font-awesome": "^4.5.0",
"intersection-observer": "^0.2.0",
"ismobilejs": "^0.4.0",
"local-storage": "^1.4.2",
"lodash": "^4.6.1",
"nouislider": "^9.1.0",
"nprogress": "^0.2.0",
"plyr": "1.5.x",
"raven-js": "^3.9.1",
"select": "^1.0.6",
"slugify": "^1.0.2",
"vue": "^2.1.9",
"vue-virtual-scroller": "^0.5.0",
"vuequery": "^1.0.0",
"youtube-player": "^3.0.4"
},
"devDependencies": {
"babel-plugin-lodash": "^2.2.1",
"babel-plugin-transform-runtime": "^6.3.13",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-register": "^6.3.13",
"babel-runtime": "^6.0.0",
"browserify-hmr": "^0.3.1",
"chai": "^3.4.1",
"chalk": "^1.1.3",
"cross-env": "^1.0.7",
"eslint": "^3.10.2",
"eslint-config-vue": "^2.0.1",
"eslint-plugin-vue": "^1.0.0",
"gulp": "^3.9.0",
"gulp-util": "^3.0.7",
"jsdom": "^9.2.1",
"laravel-elixir": "^5.0.0",
"mocha": "^2.3.4",
"node-sass": "^3.4.2",
"postcss-cssnext": "^2.6.0",
"sinon": "^1.17.2",
"vue-hot-reload-api": "^1.3.2",
"vueify": "^9.1.0",
"vueify-insert-css": "^1.0.0"
},
"scripts": {
"postinstall": "cross-env NODE_ENV=production && gulp --production",
"build": "cross-env NODE_ENV=production && gulp --production",
"test": "eslint resources/assets/js --ext=js,vue && mocha --compilers js:babel-register --require resources/assets/js/tests/helper.js resources/assets/js/tests/**/*Test.js",
"e2e": "gulp e2e",
"dev": "cross-env NODE_ENV=development && gulp watch"
}
}