-
Notifications
You must be signed in to change notification settings - Fork 136
/
package.json
74 lines (74 loc) · 2.5 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
69
70
71
72
73
74
{
"name": "analytics-monorepo",
"private": true,
"version": "0.0.0",
"workspaces": [
"playgrounds/*",
"packages/*",
"packages/consent/*",
"packages/signals/*",
"scripts"
],
"engines": {
"node": "^16.16.0"
},
"scripts": {
"test": "jest",
"test:check-dts": "yarn build && yarn ts-node meta-tests/check-dts.ts",
"test:node-int": "turbo run --filter=node-integration-tests test",
"lint": "yarn constraints && turbo run lint --continue",
"build": "turbo run build --filter='./packages/**'",
"watch": "turbo run watch --filter='./packages/**'",
"dev": "yarn workspace @playground/next-playground run dev",
"postinstall": "husky install",
"changeset": "changeset",
"update-versions-and-changelogs": "changeset version && yarn version-run-all && bash scripts/update-lockfile.sh",
"release": "yarn clean && yarn build --force && changeset publish && git push origin HEAD:master --follow-tags --no-verify",
"version-run-all": "yarn workspaces foreach -vpt --no-private run version",
"core": "yarn workspace @segment/analytics-core",
"browser": "yarn workspace @segment/analytics-next",
"node": "yarn workspace @segment/analytics-node",
"scripts": "yarn workspace @internal/scripts",
"clean": "bash scripts/clean.sh",
"turbo": "turbo"
},
"packageManager": "[email protected]",
"devDependencies": {
"@changesets/changelog-github": "^0.4.5",
"@changesets/cli": "^2.23.2",
"@microsoft/api-extractor": "^7.47.9",
"@npmcli/promise-spawn": "^7.0.0",
"@types/express": "4",
"@types/jest": "^29.5.11",
"@types/lodash": "^4",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"concurrently": "^7.6.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-prettier": "^4.0.0",
"express": "^4.18.2",
"get-monorepo-packages": "^1.2.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"lint-staged": "^13.0.0",
"lodash": "^4.17.21",
"nock": "^13.3.0",
"node-gyp": "^9.0.0",
"prettier": "^2.6.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.8.0",
"turbo": "^1.10.14",
"typescript": "^4.7.0",
"webpack": "^5.76.0",
"webpack-dev-server": "^4.15.1"
},
"resolutions": {
"@segment/analytics-next": "workspace:*",
"@segment/analytics-node": "workspace:*",
"@segment/analytics-core": "workspace:*"
}
}