aboutsummaryrefslogtreecommitdiffhomepage
path: root/package.json
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2016-03-21 11:56:33 +0100
committerChocobozzz <florian.bigard@gmail.com>2016-03-21 11:56:33 +0100
commit9457bf88079a23d28011ff7c65faa56a548b7817 (patch)
treef4507aa5ad04b7fca4ab49acee5aa97c6c962f6c /package.json
parent233d12d8b1916eae5bae230dc965045adb89a173 (diff)
downloadPeerTube-9457bf88079a23d28011ff7c65faa56a548b7817.tar.gz
PeerTube-9457bf88079a23d28011ff7c65faa56a548b7817.tar.zst
PeerTube-9457bf88079a23d28011ff7c65faa56a548b7817.zip
OAuth server: first draft
Diffstat (limited to 'package.json')
-rw-r--r--package.json5
1 files changed, 3 insertions, 2 deletions
diff --git a/package.json b/package.json
index a5f32fe11..e94d34fa1 100644
--- a/package.json
+++ b/package.json
@@ -31,7 +31,7 @@
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 && 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 {} \\;",
34 "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 && NODE_ENV=test 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",
@@ -48,6 +48,7 @@
48 "dezalgo": "^1.0.3", 48 "dezalgo": "^1.0.3",
49 "electron-spawn": "https://github.com/Chocobozzz/electron-spawn", 49 "electron-spawn": "https://github.com/Chocobozzz/electron-spawn",
50 "express": "^4.12.4", 50 "express": "^4.12.4",
51 "express-oauth-server": "https://github.com/oauthjs/express-oauth-server",
51 "express-validator": "^2.11.0", 52 "express-validator": "^2.11.0",
52 "js-yaml": "^3.5.4", 53 "js-yaml": "^3.5.4",
53 "lodash-node": "^3.10.2", 54 "lodash-node": "^3.10.2",
@@ -62,7 +63,7 @@
62 "segfault-handler": "^1.0.0", 63 "segfault-handler": "^1.0.0",
63 "ursa": "^0.9.1", 64 "ursa": "^0.9.1",
64 "validator": "^5.0.0", 65 "validator": "^5.0.0",
65 "webtorrent": "^0.85.1", 66 "webtorrent": "^0.86.0",
66 "winston": "^2.1.1", 67 "winston": "^2.1.1",
67 "ws": "^1.0.1" 68 "ws": "^1.0.1"
68 }, 69 },