mirror of
https://github.com/heyarne/airsonic-ui.git
synced 2026-05-06 10:23:39 +02:00
Before: :main [JS: 742.51 KB] [GZIP: 187.08 KB] After: :main [JS: 634.35 KB] [GZIP: 163.7 KB]
48 lines
1.7 KiB
JSON
48 lines
1.7 KiB
JSON
{
|
|
"name": "airsonic-ui",
|
|
"version": "0.0.1",
|
|
"description": "Airsonic UI written with re-frame",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build:cljs": "shadow-cljs release app",
|
|
"build:sass": "node-sass --output-style compressed src/sass/app.sass public/app/style.css",
|
|
"build": "rm -r public/*; run-p copy:* build:*",
|
|
"copy:assets": "cp -R src/assets/* public/",
|
|
"copy:icons": "cp -R node_modules/open-iconic/font/fonts public",
|
|
"deploy": "npm run build && gh-pages -d public -m \"Deploying $(git rev-parse --short HEAD)\"",
|
|
"dev:cljs": "shadow-cljs watch app test",
|
|
"dev:sass": "npm run build:sass; node-sass -w src/sass/app.sass public/app/style.css",
|
|
"dev:test": "karma start --reporters notify,progress --auto-watch",
|
|
"dev": "rm -r public/*; npm-run-all copy:* test:compile -p dev:*",
|
|
"test": "run-s test:compile test:run",
|
|
"test:compile": "shadow-cljs compile test",
|
|
"test:run": "karma start --single-run"
|
|
},
|
|
"author": "Arne Schlüter",
|
|
"license": "ISC",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/heyarne/airsonic-ui.git"
|
|
},
|
|
"dependencies": {
|
|
"@hugojosefson/color-hash": "^2.0.3",
|
|
"bulma": "^0.7.2",
|
|
"create-react-class": "^15.6.3",
|
|
"open-iconic": "^1.1.1",
|
|
"react": "^16.6.3",
|
|
"react-dom": "^16.6.3"
|
|
},
|
|
"devDependencies": {
|
|
"gh-pages": "^1.2.0",
|
|
"karma": "^3.1.1",
|
|
"karma-chrome-launcher": "^2.2.0",
|
|
"karma-cljs-test": "^0.1.0",
|
|
"karma-notify-reporter": "^1.0.1",
|
|
"node-sass": "^4.10.0",
|
|
"npm-run-all": "^4.1.5",
|
|
"react-flip-move": "^3.0.3",
|
|
"react-highlight.js": "^1.0.7",
|
|
"sass": "^1.15.1",
|
|
"shadow-cljs": "^2.7.6"
|
|
}
|
|
}
|