-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.38 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.38 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
44
45
46
{
"name": "al-web",
"version": "0.0.1",
"main": "index.js",
"repository": "git@github.com:Arca-Luminosa/web.git",
"author": "Carlos Sosa <cesosag@gmail.com>",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"apps/*",
"packages/*"
]
},
"devDependencies": {
"concurrently": "9.1.2",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"turbo": "2.4.2"
},
"scripts": {
"prepare": "husky install",
"build": "turbo build",
"test": "turbo test",
"lint": "turbo lint",
"cms:dev": "yarn workspace @al/cms develop",
"cms:build": "yarn workspace @al/cms build",
"store:dev": "yarn workspace @al/medusa-store dev",
"store:build": "yarn workspace @al/medusa-store build",
"storefront:dev": "yarn workspace @al/storefront dev",
"web:dev": "yarn workspace @al/web dev",
"web:build": "yarn workspace @al/web build",
"web:start": "yarn workspace @al/web start",
"web:lint": "yarn workspace @al/web lint",
"web:test": "yarn workspace @al/web test",
"web:test:watch": "yarn workspace @al/web test:watch",
"web:generate": "yarn workspace @al/web generate",
"store:start": "concurrently \"yarn store:dev\" \"yarn storefront:dev\"",
"dev": "concurrently \"yarn cms:dev\" \"yarn web:dev\""
},
"volta": {
"node": "20.16.0",
"yarn": "4.5.3"
},
"packageManager": "yarn@4.5.3"
}