aboutsummaryrefslogtreecommitdiffhomepage
path: root/package.json
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2016-03-14 22:41:06 +0100
committerChocobozzz <florian.bigard@gmail.com>2016-03-14 22:41:06 +0100
commite1c8024ab995494e1d39e07d9ea6700d41bdf012 (patch)
tree42f9700be6e6d04720d74d238580a1e0a8230bbe /package.json
parent5e31b38bbd428698bc4c3b0eda40b0f15d1e9b73 (diff)
downloadPeerTube-e1c8024ab995494e1d39e07d9ea6700d41bdf012.tar.gz
PeerTube-e1c8024ab995494e1d39e07d9ea6700d41bdf012.tar.zst
PeerTube-e1c8024ab995494e1d39e07d9ea6700d41bdf012.zip
Install js-yaml missing dependency
Diffstat (limited to 'package.json')
-rw-r--r--package.json8
1 files changed, 1 insertions, 7 deletions
diff --git a/package.json b/package.json
index 78e8f7dec..383e6165c 100644
--- a/package.json
+++ b/package.json
@@ -18,30 +18,23 @@
18 }, 18 },
19 "scripts": { 19 "scripts": {
20 "build": "concurrently \"npm run client:sass\" \"npm run client:tsc\"", 20 "build": "concurrently \"npm run client:sass\" \"npm run client:tsc\"",
21
22 "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\"",
23
24 "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",
25 "client:sass:index:watch": "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",
26 "client:sass:index:clean": "cd client && rm -f stylesheets/index.css", 24 "client:sass:index:clean": "cd client && rm -f stylesheets/index.css",
27
28 "client:sass:angular": "cd client && node-sass angular/ --output angular/", 25 "client:sass:angular": "cd client && node-sass angular/ --output angular/",
29 "client:sass:angular:watch": "cd client && node-sass -w angular/ --output angular/", 26 "client:sass:angular:watch": "cd client && node-sass -w angular/ --output angular/",
30 "client:sass:angular:clean": "cd client && rm -f angular/**/*.css", 27 "client:sass:angular:clean": "cd client && rm -f angular/**/*.css",
31
32 "client:sass": "concurrently \"npm run client:sass:index\" \"npm run client:sass:angular\"", 28 "client:sass": "concurrently \"npm run client:sass:index\" \"npm run client:sass:angular\"",
33 "client:sass:watch": "concurrently \"npm run client:sass:index:watch\" \"npm run client:sass:angular:watch\"", 29 "client:sass:watch": "concurrently \"npm run client:sass:index:watch\" \"npm run client:sass:angular:watch\"",
34 "client:sass:clean": "concurrently \"npm run client:sass:index:clean\" \"npm run client:sass:angular:clean\"", 30 "client:sass:clean": "concurrently \"npm run client:sass:index:clean\" \"npm run client:sass:angular:clean\"",
35
36 "client:tsc": "cd client && npm run tsc", 31 "client:tsc": "cd client && npm run tsc",
37 "client:tsc:watch": "cd client && npm run tsc:w", 32 "client:tsc:watch": "cd client && npm run tsc:w",
38 "client:tsc:clean": "cd client && find angular -regextype posix-egrep -regex \".*\\.(js|map)$\" -exec rm -f {} \\;", 33 "client:tsc:clean": "cd client && find angular -regextype posix-egrep -regex \".*\\.(js|map)$\" -exec rm -f {} \\;",
39
40 "dev": "npm run build && 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\"",
41 "livereload": "livereload ./client", 35 "livereload": "livereload ./client",
42 "start": "node server", 36 "start": "node server",
43 "test": "standard && mocha server/tests", 37 "test": "standard && mocha server/tests",
44
45 "postinstall": "cd client && npm install" 38 "postinstall": "cd client && npm install"
46 }, 39 },
47 "dependencies": { 40 "dependencies": {
@@ -55,6 +48,7 @@
55 "electron-spawn": "https://github.com/Chocobozzz/electron-spawn", 48 "electron-spawn": "https://github.com/Chocobozzz/electron-spawn",
56 "express": "^4.12.4", 49 "express": "^4.12.4",
57 "express-validator": "^2.11.0", 50 "express-validator": "^2.11.0",
51 "js-yaml": "^3.5.4",
58 "lodash-node": "^3.10.2", 52 "lodash-node": "^3.10.2",
59 "mkdirp": "^0.5.1", 53 "mkdirp": "^0.5.1",
60 "mongoose": "^4.0.5", 54 "mongoose": "^4.0.5",