1
0
mirror of https://github.com/Kovah/LinkAce.git synced 2025-02-23 10:43:41 +01:00
LinkAce/package.json

40 lines
1.5 KiB
JSON
Raw Normal View History

2018-08-22 21:10:44 +02:00
{
"name": "linkace",
2020-12-16 11:49:47 +01:00
"version": "1.0.0",
2019-01-29 13:32:39 +01:00
"description": "A small, selfhosted bookmark manager with advanced features, built with Laravel and Docker",
2018-08-22 21:10:44 +02:00
"homepage": "https://github.com/Kovah/LinkAce",
"repository": {
"type": "git",
"url": "git+https://github.com/Kovah/LinkAce.git"
},
"author": "Kovah.de",
2020-06-01 16:43:52 +02:00
"license": "GPL-3.0-or-later",
2018-08-22 21:10:44 +02:00
"bugs": {
"url": "https://github.com/Kovah/LinkAce/issues"
},
"devDependencies": {
2020-01-21 20:44:33 +01:00
"cross-env": "^6.0.3",
2020-11-17 19:51:53 +01:00
"laravel-mix": "^5.0.9",
2020-10-22 19:01:07 +02:00
"resolve-url-loader": "^3.1.2",
2020-11-17 19:51:53 +01:00
"sass": "^1.29.0",
2020-01-21 20:44:33 +01:00
"sass-loader": "^8.0.2",
2020-09-21 23:52:20 +02:00
"vue-template-compiler": "^2.6.12"
2018-08-22 21:10:44 +02:00
},
"dependencies": {
2020-10-22 19:01:07 +02:00
"bootstrap": "^4.5.3",
2020-06-01 16:43:52 +02:00
"jquery": "^3.5.1",
"popper.js": "^1.16.1",
"selectize": "git+https://github.com/Kovah/selectize.js.git"
},
"scripts": {
"dev": "npm run development -- --watch",
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "npm run development -- --watch",
"watch-poll": "npm run 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",
"prod": "npm run production",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"test": "npm run production"
2018-08-22 21:10:44 +02:00
}
}