-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.28 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
{
"name": "analytics-server",
"private": true,
"version": "1.0.0",
"description": "Analytics server which enables us to work around in-browser ad-blockers",
"main": "index.js",
"scripts": {
"start": "node index.js",
"deploy": "yarn now -f --public && yarn now alias",
"release": "yarn deploy && yarn now rm kickback-analytics --safe --yes",
"now": "now --team noblocknoparty --token $NOW_TOKEN"
},
"repository": {
"type": "git",
"url": "git+https://github.com/noblocknoparty/analytics.git"
},
"keywords": [
"mixpanel",
"proxy",
"server"
],
"author": "Ramesh Nair <[email protected]>",
"license": "AGPLv3",
"bugs": {
"url": "https://github.com/noblocknoparty/analytics/issues"
},
"homepage": "https://github.com/noblocknoparty/analytics#readme",
"dependencies": {
"@koa/cors": "^2.2.2",
"global-tunnel-ng": "^2.6.0",
"got": "^9.2.2",
"koa": "^2.5.3",
"koa-router": "^7.4.0"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-standard": "^3.0.1",
"now": "^11.4.6"
}
}