This repository has been archived by the owner on Sep 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
114 lines (114 loc) · 2.79 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "teamchatviz",
"version": "0.1.0",
"description": "Slack Data Vizualization App",
"repository": "https://github.com/moovel/teamchatviz",
"main": "index.js",
"scripts": {
"start": "nodemon --ignore node_modules --ignore client index.js",
"test": "mocha --compilers js:babel-register",
"up": "db-migrate up",
"down": "db-migrate down",
"create": "db-migrate create",
"install": "napa karpathy/tsnejs:tsne",
"postinstall": "if [ $BUILD_ASSETS ]; then npm run up && cd client && npm install && npm run build && cp -r dist ../client-dist && cd .. && rm -rf client && mv client-dist client; fi"
},
"keywords": [
"slack",
"visualization",
"react",
"es6",
"babel"
],
"author": "moovel GmbH",
"license": "LGPL-2.1",
"contributors": [
{
"name": "Oleksii Rudenko",
"email": "[email protected]"
},
{
"name": "Flore De Crombrugghe",
"email": "[email protected]"
},
{
"name": "Josefine Hartung",
"email": "[email protected]"
},
{
"name": "Benedikt Groß",
"email": "[email protected]"
},
{
"name": "Benedikt Groß",
"email": "[email protected]"
},
{
"name": "Tobias Lauer",
"email": "[email protected]"
}
],
"dependencies": {
"@slack/client": "3.8.1",
"babel-core": "6.22.1",
"babel-preset-es2015-node5": "1.2.0",
"babel-preset-stage-3": "6.22.0",
"bluebird": "3.4.7",
"density-clustering": "1.3.0",
"dotenv": "2.0.0",
"faker": "3.1.0",
"kcors": "2.2.0",
"koa": "2.0.0-alpha.7",
"koa-basic-auth": "2.0.0",
"koa-bodyparser": "3.2.0",
"koa-compress": "2.0.0",
"koa-conditional-get": "2.0.0",
"koa-convert": "1.2.0",
"koa-etag": "3.0.0",
"koa-generic-session": "1.11.5",
"koa-mount": "2.0.0",
"koa-passport": "2.2.2",
"koa-pg-session": "2.0.1",
"koa-router": "7.0.1",
"koa-static": "3.0.0",
"lodash": "4.17.4",
"moment-timezone": "0.5.11",
"ms": "0.7.2",
"node-cache": "3.2.1",
"passport-slack": "0.0.6",
"pg-monitor": "0.5.11",
"pg-promise": "4.8.1",
"tsne-js": "1.0.3",
"winston": "2.3.1"
},
"devDependencies": {
"babel-register": "6.22.0",
"chai": "3.5.0",
"db-migrate": "0.10.0-beta.20",
"db-migrate-pg": "0.1.11",
"mocha": "2.5.3",
"napa": "2.3.0",
"nodemon": "1.11.0",
"supertest": "1.2.0"
},
"babel": {
"presets": [
"es2015-node5",
"stage-3"
]
},
"jspm": {
"name": "teamchatviz",
"main": "teamchatviz.js",
"directories": {
"lib": "src"
},
"dependencies": {},
"devDependencies": {
"plugin-babel": "npm:systemjs-plugin-babel@^0.0.12"
}
},
"engines": {
"node": "4.x"
}
}