-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.08 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
{
"name": "cytube-frontend",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"build": "babel -D --source-maps --out-dir lib/ src/",
"dev": "babel -D --watch --source-maps --out-dir lib/ src/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Calvin Montgomery",
"license": "MIT",
"dependencies": {
"babel-cli": "^6.1.4",
"babel-core": "^6.1.4",
"babel-plugin-transform-es2015-destructuring": "^6.3.15",
"babel-plugin-transform-es2015-for-of": "^6.3.13",
"babel-preset-es2015": "^6.1.4",
"bluebird": "^3.0.5",
"cookie-parser": "^1.4.0",
"cytube-common": "github:cytube/cytube-common",
"ip": "^1.0.2",
"socket.io": "^1.4.5",
"socket.io-redis": "^1.0.0",
"source-map-support": "^0.4.0",
"uuid": "^2.0.1"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
[
"transform-es2015-destructuring",
{
"loose": true
}
],
[
"transform-es2015-for-of",
{
"loose": true
}
]
]
}
}