This repository has been archived by the owner on Oct 26, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.59 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "u-wave-http-api",
"version": "0.5.0",
"description": "HTTP API interface for üWave.",
"license": "MIT",
"repository": "u-wave/http-api",
"author": "Sooyou <souyoou@googlemail.com>",
"contributors": [
"Felix Wong <felix@fawong.com>",
"Goz3rr <goz3rr@gmail.com>",
"Renée Kooi <renee@kooi.me>",
"xBytez <me@xbytez.eu>"
],
"main": "dist/u-wave-http-api.js",
"module": "dist/u-wave-http-api.es.js",
"engines": {
"node": ">= 8.9"
},
"scripts": {
"test": "eslint --cache .",
"build": "rollup -c",
"now-build": "npm run build && cd demo && sh build.sh",
"now-start": "node demo",
"watch": "rollup -c -w",
"start": "nodemon -- dev/u-wave-api-dev-server --watch",
"prepare": "npm run build"
},
"dependencies": {
"body-parser": "^1.18.2",
"cookie": "^0.4.0",
"cookie-parser": "^1.4.3",
"debug": "^4.0.0",
"escape-string-regexp": "^2.0.0",
"i18next": "^17.0.0",
"joi": "^14.0.0",
"jsonwebtoken": "^8.1.0",
"lodash": "^4.16.1",
"ms": "^2.0.0",
"node-fetch": "^2.2.0",
"nodemailer": "^6.0.0",
"p-props": "^3.0.0",
"passport": "^0.4.0",
"passport-google-oauth20": "^2.0.0",
"passport-local": "^1.0.0",
"qs": "^6.5.1",
"random-string": "^0.2.0",
"ratelimiter": "^3.0.2",
"router": "^1.3.2",
"try-json-parse": "^1.0.0",
"ultron": "^1.0.2",
"ws": "^7.0.0",
"yaml": "^1.0.0-rc.7"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-optional-catch-binding": "^7.0.0",
"@babel/plugin-syntax-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-flow-comments": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"clarify": "^2.1.0",
"concat-stream": "^2.0.0",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"explain-error": "^1.0.4",
"express": "^4.16.2",
"is-builtin-module": "^3.0.0",
"minimist": "^1.2.0",
"nodemon": "^1.17.5",
"recaptcha-test-keys": "^1.0.0",
"rollup": "^1.0.0",
"rollup-plugin-babel": "^4.0.2",
"rollup-plugin-delete": "^1.0.0",
"rollup-plugin-es-module-interop": "^2.0.0",
"rollup-plugin-node-resolve": "^5.0.0",
"source-map-support": "^0.5.3",
"trace": "^3.1.0",
"u-wave-announce": "^0.3.0",
"u-wave-source-soundcloud": "^1.3.0",
"u-wave-source-youtube": "^1.2.0"
},
"now": {
"name": "u-wave-demo",
"alias": "u-wave-demo.now.sh"
}
}