forked from deriv-com/deriv-analytics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.83 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
{
"name": "@deriv-com/analytics",
"version": "0.0.0-development",
"description": "The analytics package contains all the utility functions used for tracking user events and sending them to the respective platform such as Rudderstack.",
"keywords": [
"rudderstack",
"growthbook",
"react"
],
"private": false,
"publishConfig": {
"access": "public"
},
"author": "Amir Ali, Addriene, Nikita,Aswathy",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "./node_modules/.bin/jest",
"build": "tsc && npm run build:webpack",
"prepare": "npm run build && husky install",
"prepublishOnly": "npm test",
"build:webpack": "webpack"
},
"files": [
"lib/**/*",
"dist/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/binary-com/deriv-analytics"
},
"homepage": "https://github.com/binary-com/deriv-analytics",
"devDependencies": {
"@deriv-com/utils": "^0.0.42",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/github": "^10.0.6",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.0",
"@types/jest": "^29.5.3",
"@types/js-cookie": "^3.0.6",
"@types/node": "^20.4.1",
"@types/uuid": "^10.0.0",
"husky": "^8.0.3",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"lint-staged": "^15.0.1",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.1",
"typescript": "^4.9.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@growthbook/growthbook": "^1.1.0",
"@rudderstack/analytics-js": "^3.5.1",
"js-cookie": "^3.0.5",
"uuid": "^10.0.0"
},
"engines": {
"node": "18.x",
"npm": "9.x"
},
"license": "MIT",
"lint-staged": {
"*.{js,md,ts}": "prettier --write"
}
}