-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 2.3 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
{
"name": "@cbcrc/murdock",
"version": "0.0.7",
"description": "Track events - custom user actions, clicks, pageviews, purchases.",
"main": "dist/lib.js",
"scripts": {
"build": "NODE_ENV=production webpack --mode production && NODE_ENV=production OPTIMIZE_MINIMIZE=1 webpack --mode production && npm run build:node",
"build:node": "TARGET=node NODE_ENV=production webpack --mode production",
"build:dev": "NODE_ENV=dev API_HOST=murdock.qa.camr.io webpack --mode production",
"build:prod": "NODE_ENV=production API_HOST=murdock.prod.camr.io webpack --mode production",
"profile": "webpack --profile --json > stats.json",
"analyze": "webpack-bundle-analyzer stats.json /dist",
"preversion": "npm run build:node && npm run test",
"version": "npm run build && git add .",
"postversion": "git push && git push --tags && npm publish",
"build:deploy:prod": "npm run build:prod && ./deploy.sh",
"build:deploy:dev": "npm run build:dev && ./deploy.sh"
},
"dependencies": {
"component-emitter": "^1.3.0",
"dotenv-webpack": "^8.0.1",
"js-cookie": "2.1.0",
"promise-polyfill": "^8.3.0",
"whatwg-fetch": "^2.0.4"
},
"devDependencies": {
"babel-core": "^7.0.0-beta.3",
"babel-jest": "^29.6.4",
"babel-loader": "^9.1.3",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^8.47.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-webpack-plugin": "^4.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^5.5.3",
"jest": "^29.6.4",
"jest-fetch-mock": "^3.0.3",
"merge": "^2.1.1",
"nock": "^9.6.1",
"regenerator-runtime": "^0.11.1",
"replace-in-file": "^3.4.0",
"terser-webpack-plugin": "^2.3.8",
"url-parse": "^1.4.3",
"webpack": "^5.88.2",
"webpack-bundle-analyzer": "^4.9.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"xhr-mock": "^2.5.1"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"repository": "[email protected]:cbcrc/distribution-ad-tracker.git"
}