forked from adobe/commerce-events
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 931 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
31
32
33
{
"name": "commerce-events-monorepo",
"version": "0.0.0",
"private": true,
"license": "MIT",
"workspaces": [
"examples/*",
"packages/*"
],
"scripts": {
"start": "turbo run start",
"build": "turbo run build",
"build:qa": "turbo run build:qa",
"build:prod": "turbo run build:prod",
"ace": "turbo run ace --parallel",
"dev": "turbo run dev --parallel",
"test": "turbo run test",
"lint": "turbo run lint --filter=./packages/storefront-events-*",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"postinstall": "yarn build"
},
"devDependencies": {
"@changesets/cli": "^2.24.3",
"eslint-config-custom": "*",
"prettier": "^2.7.0",
"turbo": "^1.3.1"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"packageManager": "yarn@1.22.17"
}