-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
executable file
·30 lines (30 loc) · 1006 Bytes
/
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
{
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --no-cache --parallel --continue",
"test": "turbo run test",
"lint": "turbo run lint",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"changeset": "changeset",
"version-packages": "changeset version && yarn turbo postversion && sh scripts/update-lockfile.sh",
"release": "turbo run build --filter='./packages/*' && changeset publish",
"full-example:deploy": "yarn build && yarn workspace @segment/cloudflare_example deploy:prod",
"proxy-example:deploy": "yarn build && yarn workspace @segment/segment_proxy deploy:prod"
},
"engines": {
"npm": "please-use-yarn"
},
"devDependencies": {
"@changesets/cli": "^2.22.0",
"@segment/eslint-config-edge-sdk": "*",
"prettier": "^2.5.1",
"turbo": "latest"
},
"packageManager": "yarn@3.4.1"
}