diff options
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 18 |
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" |