1
0
Fork 0
mirror of https://github.com/heyarne/airsonic-ui.git synced 2026-05-06 10:23:39 +02:00
airsonic-ui/package.json
Arne Schlüter cd06abff97 Restructure app init; fixes #5 and #11
Squashed commit of the following:

commit d4242bf1a390994606b7bd6e630c55338a14aad4
Author: Arne Schlüter <arne@schlueter.is>
Date:   Mon Jul 9 21:12:44 2018 +0200

    Add loading spinner, done with reworked app boot flow; fixes #5 and #11

commit e864ae4e578f96b86f3c0239b79f5224f0bb0020
Author: Arne Schlüter <arne@schlueter.is>
Date:   Mon Jul 9 19:43:02 2018 +0200

    Start restructuring app boot flow

commit a8cdbef80acde9f185a588ab86f8ea6964ebe8ab
Author: Arne Schlüter <arne@schlueter.is>
Date:   Mon Jul 9 14:03:43 2018 +0200

    Ignore rebel readline artifacts

commit 67eae3bc6aa2938ad6748c78b6259e532e66f865
Author: Arne Schlüter <arne@schlueter.is>
Date:   Mon Jul 9 14:03:11 2018 +0200

    Update shadow-cljs and run npm audit fix
2018-07-09 21:16:28 +02:00

49 lines
1.8 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:html": "sed 's/\"\\/app\\//\".\\/app\\//g' src/html/index.html > public/index.html",
"build:sass": "node-sass --output-style compressed src/sass/app.sass public/app/style.css",
"build": "rm -r public/*; run-p copy:* build:*",
"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:html": "sed 's/\"\\.\\/app\\//\"\\/app\\//g' src/html/index.html > public/index.html",
"dev:sass": "npm run build:sass; node-sass -w src/sass/app.sass public/app/style.css",
"dev:test": "karma start --reporters growl,progress --auto-watch",
"dev": "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.1",
"create-react-class": "^15.6.3",
"open-iconic": "^1.1.1",
"react": "^16.3.2",
"react-dom": "^16.3.2"
},
"devDependencies": {
"gh-pages": "^1.2.0",
"karma": "^2.0.4",
"karma-chrome-launcher": "^2.2.0",
"karma-cljs-test": "^0.1.0",
"karma-growl-reporter": "^1.0.0",
"node-sass": "^4.9.2",
"npm-run-all": "^4.1.2",
"react-flip-move": "^3.0.1",
"react-highlight.js": "^1.0.7",
"sass": "^1.3.2",
"shadow-cljs": "^2.4.17"
}
}