-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 717 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 717 Bytes
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
{
"name": "shopify-theme-toolkit",
"version": "0.0.0",
"private": true,
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"test": "turbo run test",
"test:watch": "turbo run test:watch"
},
"devDependencies": {
"@davidwarrington/eslint-config": "^2.3.2",
"@davidwarrington/prettier-config": "^2.2.3",
"eslint": "^9.28.0",
"prettier": "^3.5.3",
"turbo": "^2.5.4"
},
"dependencies": {
"tsdown": "^0.12.7"
},
"engines": {
"node": ">=23.11.0"
},
"packageManager": "pnpm@10.10.0"
}