mirror of
https://github.com/heyarne/airsonic-ui.git
synced 2026-05-06 18:33:38 +02:00
commit 1b86fa1477d9cbad441e7616b6f1adbceec76c9c
Author: Arne Schlüter <arne@schlueter.is>
Date: Mon May 28 19:52:48 2018 +0200
Cache build directories for (hopefully) faster builds
commit b614e1fa8437bb20cb5fcb05d6ab7ad318984f01
Author: Arne Schlüter <arne@schlueter.is>
Date: Mon May 28 19:49:34 2018 +0200
Fix undeclared var in test
commit f0f30e6a546ad0e4a7f65538d485b5544f7733c3
Author: Arne Schlüter <arne@schlueter.is>
Date: Mon May 28 19:27:13 2018 +0200
Configure travis and fix dependencies
commit 5a3f432d9e9ed34e21a6940a18f11fa4d0ef9b7d
Author: Arne Schlüter <arne@schlueter.is>
Date: Mon May 28 19:22:33 2018 +0200
Remove build folders from git
commit 44095cbd34e2ed6f70d43b7c72f5cb4bacb18913
Author: Arne Schlüter <arne@schlueter.is>
Date: Mon May 28 19:17:05 2018 +0200
Add first real test
commit 02a0ef51c61c15ddc6de88f34aa5fd2817fdca88
Author: Arne Schlüter <arne@schlueter.is>
Date: Mon May 28 16:38:40 2018 +0200
Add growl notifications
commit 5b09be97e04e64ecab5aba3e063f584e48d21c0a
Author: Arne Schlüter <arne@schlueter.is>
Date: Mon May 28 14:29:02 2018 +0200
Add karma watcher
commit 6d7859f7fd420e4057277da3605a4df5985d8ae9
Author: Arne Schlüter <arne@schlueter.is>
Date: Mon May 28 14:20:12 2018 +0200
Add karma and set it up for single-run tests
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": {
|
|
"test": "run-s test:compile-once test:run-once",
|
|
"test:compile-once": "shadow-cljs compile test",
|
|
"test:run-once": "karma start --single-run",
|
|
"test:compile-watch": "shadow-cljs watch test",
|
|
"test:run-watch": "karma start --reporters growl,progress --auto-watch",
|
|
"test:watch": "npm-run-all test:compile-once -p test:compile-watch test:run-watch",
|
|
"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 build:*; ",
|
|
"deploy": "npm run build && gh-pages -d public",
|
|
"dev:cljs": "shadow-cljs watch app",
|
|
"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": "run-p dev:*"
|
|
},
|
|
"author": "Arne Schlüter",
|
|
"license": "ISC",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/heyarne/airsonic-ui.git"
|
|
},
|
|
"dependencies": {
|
|
"bulma": "^0.7.1",
|
|
"create-react-class": "^15.6.3",
|
|
"react": "^16.3.2",
|
|
"react-dom": "^16.3.2",
|
|
"shadow-cljs": "^2.3.19"
|
|
},
|
|
"devDependencies": {
|
|
"gh-pages": "^1.1.0",
|
|
"karma": "^2.0.2",
|
|
"karma-chrome-launcher": "^2.2.0",
|
|
"karma-cljs-test": "^0.1.0",
|
|
"karma-growl-reporter": "^1.0.0",
|
|
"node-sass": "^4.9.0",
|
|
"npm-run-all": "^4.1.2",
|
|
"react-flip-move": "^3.0.1",
|
|
"react-highlight.js": "^1.0.7",
|
|
"sass": "^1.3.2"
|
|
}
|
|
}
|