-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
28 lines (28 loc) · 1.38 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"name": "bookmarks-for-spotify",
"version": "2.4.2",
"author": "Nils Dehl <mail@nils-dehl.de> (http://nils-dehl.de)",
"description": "Bookmarks for Spotify - allows you to bookmark recently played song or audiobook tracks from Spotify.",
"private": true,
"scripts": {
"dev": "NODE_ENV=development node bin/www.js",
"start": "node ./bin/www",
"version:set": "npm --no-git-tag-version version $APP_VERSION",
"build:sencha": "cd client && sencha-6.5.0.180 app build production",
"build:docker": "docker build -t $DOCKERHUB_REPOSITORY:$APP_VERSION .",
"push:docker": "docker push $DOCKERHUB_REPOSITORY:$APP_VERSION",
"sloppy:change": "sloppy change -var=domain:$DOMAIN -var=version:$APP_VERSION -var dockerhub-repository:$DOCKERHUB_REPOSITORY sloppy-io-deploy-config.json",
"git:tag": "git checkout client/app.json && git checkout client/index.html && git add -A && git commit -m \"v$APP_VERSION\" && git tag v$APP_VERSION && git push && git push origin v$APP_VERSION",
"deploy:prod": "npm run version:set && npm run build:sencha && npm run git:tag && npm run build:docker && npm run push:docker && npm run sloppy:change"
},
"dependencies": {
"cookie-parser": "1.3.2",
"express": "~4.0.0",
"querystring": "~0.2.0",
"request": "~2.34.0",
"body-parser": "~1.17.1",
"debug": "~2.6.3",
"morgan": "~1.8.1",
"serve-favicon": "~2.4.2"
}
}