-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.12 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.12 KB
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
{
"name": "storefuse",
"version": "0.0.1",
"private": true,
"description": "Open-source modular storefront framework - WooCommerce + Next.js",
"repository": {
"type": "git",
"url": "https://github.com/ProgrammerNomad/storefuse.git"
},
"author": "ProgrammerNomad",
"license": "MIT",
"workspaces": [
"apps/*",
"packages/*",
"packages/adapters/*",
"packages/modules/*",
"packages/themes/*"
],
"scripts": {
"dev": "turbo run dev --concurrency 15",
"build": "turbo run build",
"lint": "turbo run lint",
"type-check": "turbo run type-check",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,md,json}\"",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/node": "^20.11.5",
"eslint": "^8.56.0",
"prettier": "^3.2.4",
"turbo": "^1.12.1",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.17.0",
"pnpm": ">=8.0.0"
},
"packageManager": "pnpm@8.15.1"
}