forked from segmentio/analytics-next
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
69 lines (69 loc) · 2.53 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
{
"name": "analytics-monorepo",
"private": true,
"version": "0.0.0",
"workspaces": [
"examples/*",
"packages/*"
],
"engines": {
"node": "^14.15.0"
},
"scripts": {
"test": "jest",
"test:scripts": "jest --config scripts/jest.config.js",
"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 @example/with-next-js 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 @customerio/cdp-analytics-core",
"core+deps": "turbo run --filter=@customerio/cdp-analytics-core",
"browser": "yarn workspace @customerio/cdp-analytics-browser",
"browser+deps": "turbo run --filter=@customerio/cdp-analytics-browser",
"node": "yarn workspace @customerio/cdp-analytics-node",
"node+deps": "turbo run --filter=@customerio/cdp-analytics-node",
"clean": "bash scripts/clean.sh"
},
"packageManager": "[email protected]",
"devDependencies": {
"@changesets/changelog-github": "^0.4.5",
"@changesets/cli": "^2.23.2",
"@internal/config": "workspace:^",
"@npmcli/promise-spawn": "^3.0.0",
"@types/express": "4",
"@types/jest": "^28.1.1",
"@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-prettier": "^4.0.0",
"express": "^4.18.2",
"get-monorepo-packages": "^1.2.0",
"husky": "^8.0.0",
"jest": "^28.1.0",
"lint-staged": "^13.0.0",
"lodash": "^4.17.21",
"nock": "^13.2.9",
"node-gyp": "^9.0.0",
"prettier": "^2.6.2",
"ts-jest": "^28.0.4",
"ts-node": "^10.8.0",
"turbo": "^1.3.1",
"typescript": "^4.7.0"
},
"resolutions": {
"@customerio/cdp-analytics-browser": "workspace:*",
"@customerio/cdp-analytics-node": "workspace:*",
"@customerio/cdp-analytics-core": "workspace:*"
}
}