-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 4.73 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 4.73 KB
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
115
116
117
118
119
120
121
122
123
124
{
"name": "hull-googleanalytics",
"version": "0.1.0",
"description": "Hull Connector for Google Analytics",
"main": "src/index.ts",
"scripts": {
"postinstall": "npm run build",
"build": "run-p --print-label build-src build-dts",
"build--watch": "onchange 'src/**/*' --initial --kill --delay 1000 -- npm run build",
"build-dts": "tsc --emitDeclarationOnly",
"build-dts--watch": "npm run build-dts -- --watch --preserveWatchOutput",
"build-src": "babel src --out-dir dist --extensions .js,.jsx,.ts,.tsx --source-maps",
"build-src--watch": "npm run build-src -- --watch 'src/**/*' --verbose",
"dev": "NODE_ENV=development npm run build-src--watch",
"dev--debug": "DEBUG=hullterra-gorgias-server npm run dev",
"format": "run-s format-doctoc format-package-json format-imports format-prettier format-eslint",
"format-doctoc": "doctoc --maxlevel 3 --notitle ./README.md ./DEVELOPING.md",
"format-eslint": "eslint --cache --ext .js,.jsx,.ts,.tsx --fix ./ >/dev/null 2>&1 || true",
"format-imports": "import-sort --write '**/*.{js,jsx,ts,tsx}'",
"format-package-json": "prettier-package-json --write",
"format-prettier": "prettier --write '**/*.{css,gql,graphql,html,js,jsx,json,less,md,mdx,scss,ts,tsx,vue,yaml,yml}' '.editorconfig' 'LICENSE'",
"lint": "run-p lint-eslint lint-markdown",
"lint--watch": "onchange 'src/**/*' --initial --kill --delay 1000 -- npm run lint",
"lint-eslint": "eslint --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./",
"lint-markdown": "markdownlint --ignore coverage --ignore dist --ignore node_modules '**/*.md' '.**/**/*.md'",
"ngrok": "ngrok http 8097 --subdomain=hull-googleanalytics",
"ngrokfree": "ngrok http 8097",
"start": "node dist/index.js",
"start--dev": "NODE_ENV=development npm run start",
"start--dev--watch": "NODE_ENV=development npm run start-src--watch",
"start-src": "babel-node --extensions .js,.jsx,.ts,.tsx --require ./node_modules/dotenv/config ./src/index.ts",
"start-src--watch": "nodemon --ext js,jsx,ts,tsx --delay 1 --exec npm run start-src",
"test": "jest --env=node --colors --coverage --no-cache",
"test--watch": "jest --watch",
"test--clear": "jest --clearCache",
"typecheck": "tsc --noEmit",
"typecheck--watch": "npm run typecheck -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hull/hull-googleanalytics.git"
},
"keywords": [
"hull",
"google-analytics",
"integration",
"connector",
"cdp"
],
"author": {
"name": "Sven Maschek",
"url": "https://www.github.com/hull"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/hull/hull-googleanalytics/issues"
},
"homepage": "https://github.com/hull/hull-googleanalytics#readme",
"dependencies": {
"awilix": "^4.2.6",
"cors": "^2.8.5",
"csvtojson": "^2.0.10",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"formidable": "^1.2.2",
"googleapis": "^52.1.0",
"hull": "^0.13.20",
"lodash": "^4.17.15",
"luxon": "^1.24.1",
"redis": "^3.0.2",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/node": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-typescript": "^7.9.0",
"@babel/runtime": "^7.9.6",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.6",
"@types/formidable": "^1.0.31",
"@types/jest": "^25.2.1",
"@types/lodash": "^4.14.150",
"@types/luxon": "^1.24.0",
"@types/nock": "^11.1.0",
"@types/node": "^13.13.5",
"@types/redis": "^2.8.21",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^2.32.0",
"babel-jest": "^26.0.1",
"doctoc": "^1.4.0",
"eslint": "^7.0.0",
"eslint-config-airbnb-typescript": "^7.2.1",
"eslint-config-prettier": "^6.11.0",
"eslint-formatter-pretty": "^3.0.1",
"eslint-plugin-eslint-comments": "^3.1.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.10.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-unicorn": "^19.0.1",
"express-request-mock": "^2.1.0",
"husky": "^4.2.5",
"import-sort-cli": "^6.0.0",
"import-sort-parser-typescript": "^6.0.0",
"import-sort-style-module": "^6.0.0",
"jest": "^26.0.1",
"lint-staged": "^10.2.2",
"markdownlint-cli": "^0.23.0",
"nock": "^12.0.3",
"nodemon": "^2.0.3",
"npm-run-all": "^4.1.5",
"onchange": "^7.0.2",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"sort-package-json": "^1.42.2",
"ts-jest": "^25.5.1",
"typescript": "^3.8.3"
}
}