forked from segmentio/analytics-next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.21 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": "analytics-monorepo",
"private": true,
"version": "0.0.0",
"workspaces": [
"examples/*",
"packages/*",
"internal/*"
],
"engines": {
"node": "^14.15.0"
},
"scripts": {
"test": "FORCE_COLOR=1 turbo run test --filter='./packages/*'",
"test:scripts": "jest --config scripts/jest.config.js",
"lint": "yarn constraints && turbo run lint",
"build": "turbo run build --filter='./packages/*'",
"watch": "turbo run watch --filter='./packages/*'",
"dev": "yarn workspace 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 build --force && changeset publish && yarn postpublish-run-all && git push origin --tags --no-verify",
"postpublish-run-all": "yarn workspaces foreach -vpt --no-private run postpublish",
"version-run-all": "yarn workspaces foreach -vpt --no-private run version",
"core": "yarn workspace @segment/analytics-core",
"core+deps": "turbo run --filter=@segment/analytics-core...",
"browser": "yarn workspace @segment/analytics-next",
"browser+deps": "turbo run --filter=@segment/analytics-next...",
"node": "yarn workspace @segment/analytics-node",
"node+deps": "turbo run --filter=@segment/analytics-node...",
"clean": "bash scripts/clean.sh"
},
"packageManager": "[email protected]",
"devDependencies": {
"@changesets/changelog-github": "^0.4.5",
"@changesets/cli": "^2.23.2",
"@npmcli/promise-spawn": "^3.0.0",
"@types/jest": "^28.1.1",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"concurrently": "^7.2.1",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"get-monorepo-packages": "^1.2.0",
"husky": "^8.0.0",
"jest": "^28.1.0",
"lint-staged": "^13.0.0",
"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.6.4"
},
"resolutions": {
"@segment/analytics-next": "workspace:*",
"@segment/analytics-node": "workspace:*"
}
}