aboutsummaryrefslogtreecommitdiffhomepage
path: root/package.json
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2016-03-08 08:27:13 +0100
committerChocobozzz <florian.bigard@gmail.com>2016-03-08 08:37:15 +0100
commitbd324a669218f9ed302f7f54b36ee535d25c9733 (patch)
treeaebade345a240333c6f7e8e162881548c6c56dec /package.json
parent3d446a26ada901331faaaf3be9083dfe6773b50a (diff)
downloadPeerTube-bd324a669218f9ed302f7f54b36ee535d25c9733.tar.gz
PeerTube-bd324a669218f9ed302f7f54b36ee535d25c9733.tar.zst
PeerTube-bd324a669218f9ed302f7f54b36ee535d25c9733.zip
Prepare client app
Diffstat (limited to 'package.json')
-rw-r--r--package.json18
1 files changed, 9 insertions, 9 deletions
diff --git a/package.json b/package.json
index cebd5b506..aabd5616f 100644
--- a/package.json
+++ b/package.json
@@ -20,18 +20,18 @@
20 "build": "concurrently \"npm run client:sass\" \"npm run client:tsc\"", 20 "build": "concurrently \"npm run client:sass\" \"npm run client:tsc\"",
21 "client:clean": "concurrently \"npm run client:tsc:clean\" \"npm run client:sass:clean\"", 21 "client:clean": "concurrently \"npm run client:tsc:clean\" \"npm run client:sass:clean\"",
22 "client:sass:index": "npm run client:sass:index:clean && cd client && node-sass --include-path node_modules/bootstrap-sass/assets/stylesheets/ stylesheets/application.scss stylesheets/index.css", 22 "client:sass:index": "npm run client:sass:index:clean && cd client && node-sass --include-path node_modules/bootstrap-sass/assets/stylesheets/ stylesheets/application.scss stylesheets/index.css",
23 "client:sass:index:watch": "npm run client:sass:index:clean && cd client && node-sass -w --include-path node_modules/bootstrap-sass/assets/stylesheets/ stylesheets/application.scss stylesheets/index.css", 23 "client:sass:index:watch": "cd client && node-sass -w --include-path node_modules/bootstrap-sass/assets/stylesheets/ stylesheets/application.scss stylesheets/index.css",
24 "client:sass:index:clean": "cd client && rm -f stylesheets/index.css", 24 "client:sass:index:clean": "cd client && rm -f stylesheets/index.css",
25 "client:sass:app": "cd client && node-sass app/ --output app/", 25 "client:sass:components": "cd client && node-sass components/ --output components/",
26 "client:sass:app:watch": "cd client && node-sass -w app/ --output app/", 26 "client:sass:components:watch": "cd client && node-sass -w components/ --output components/",
27 "client:sass:app:clean": "cd client && rm -f app/*.css", 27 "client:sass:components:clean": "cd client && rm -f components/**/*.css",
28 "client:sass": "concurrently \"npm run client:sass:index\" \"npm run client:sass:app\"", 28 "client:sass": "concurrently \"npm run client:sass:index\" \"npm run client:sass:components\"",
29 "client:sass:watch": "concurrently \"npm run client:sass:index:watch\" \"npm run client:sass:app:watch\"", 29 "client:sass:watch": "concurrently \"npm run client:sass:index:watch\" \"npm run client:sass:components:watch\"",
30 "client:sass:clean": "concurrently \"npm run client:sass:index:clean\" \"npm run client:sass:app:clean\"", 30 "client:sass:clean": "concurrently \"npm run client:sass:index:clean\" \"npm run client:sass:components:clean\"",
31 "client:tsc": "cd client && npm run tsc", 31 "client:tsc": "cd client && npm run tsc",
32 "client:tsc:watch": "cd client && npm run tsc:w", 32 "client:tsc:watch": "cd client && npm run tsc:w",
33 "client:tsc:clean": "cd client && rm -f app/*.js app/*.js.map", 33 "client:tsc:clean": "cd client && rm -f components/**/*.js components/**/*.js.map",
34 "dev": "concurrently \"npm run livereload\" \"npm run client:tsc:watch\" \"npm run client:sass:watch\" \"npm start\"", 34 "dev": "npm run build && concurrently \"npm run livereload\" \"npm run client:tsc:watch\" \"npm run client:sass:watch\" \"npm start\"",
35 "livereload": "livereload ./client", 35 "livereload": "livereload ./client",
36 "start": "node server", 36 "start": "node server",
37 "test": "standard && mocha server/tests" 37 "test": "standard && mocha server/tests"