-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 763 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 763 Bytes
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
{
"name": "google-analytics-aws-proxy",
"version": "0.1.0",
"author": "Nikolay Feldman<niko@nfeld.com>",
"repository": {
"type": "git",
"url": "git@github.com:codeniko/simple-tracker.git"
},
"private": true,
"scripts": {
"build": "netlify-lambda build aws-lambda",
"serve": "netlify-lambda serve aws-lambda",
"clean": "rm -rf ./npm-debug.log ./build"
},
"dependencies": {
"querystring": "^0.2.0",
"request": "^2.85.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.44",
"netlify-lambda": "^1.0.0-babel-7-beta"
},
"proxy": {
"/.netlify/functions": {
"target": "http://localhost:9000",
"pathRewrite": {
"^/\\.netlify/functions": ""
}
}
}
}