koel/package.json

53 lines
1.9 KiB
JSON
Raw Normal View History

2015-12-13 04:42:28 +00:00
{
"name": "koel",
"author": "Phan An <me@phanan.net>",
2020-04-22 21:46:07 +00:00
"homepage": "https://koel.dev",
2015-12-13 04:42:28 +00:00
"license": "MIT",
"description": "A personal music streaming server that works",
"keywords": [
"music",
"audio",
"stream"
],
"repository": {
"type": "git",
2020-04-22 21:46:07 +00:00
"url": "https://github.com/koel/koel"
2015-12-13 04:42:28 +00:00
},
"devDependencies": {
2020-12-30 00:30:32 +00:00
"@testing-library/cypress": "^7.0.3",
"cross-env": "^3.2.3",
2020-12-30 00:30:32 +00:00
"cypress": "^6.2.0",
2017-02-14 06:53:02 +00:00
"font-awesome": "^4.7.0",
"husky": "^4.2.5",
2020-05-06 20:35:35 +00:00
"laravel-mix": "^5.0.4",
"lint-staged": "^10.3.0",
2020-05-06 20:35:35 +00:00
"resolve-url-loader": "^3.1.1",
"sass": "^1.26.5",
"sass-loader": "^8.0.2",
2020-12-30 00:30:32 +00:00
"start-server-and-test": "^1.11.7",
2020-05-06 20:35:35 +00:00
"ts-loader": "^7.0.1",
"typescript": "^3.8.3",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.42.1",
2017-12-10 00:21:39 +00:00
"webpack-node-externals": "^1.6.0"
},
2015-12-13 04:42:28 +00:00
"scripts": {
2017-10-02 00:32:32 +00:00
"watch": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch-poll": "yarn watch -- --watch-poll",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
2020-12-30 00:30:32 +00:00
"dev": "start-test 'php artisan serve --port=8000 --quiet' :8000 hot",
"test:e2e": "start-test 'php artisan serve --port=8088 --quiet' :8088 'cypress open'",
"test:e2e:ci": "start-test 'php artisan serve --port=8088 --quiet' :8088 'cypress run'",
"build": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
2019-08-24 18:01:09 +00:00
"build-demo": "cross-env NODE_ENV=demo node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
},
"dependencies": {},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
2015-12-13 04:42:28 +00:00
}