-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.07 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.07 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
{
"name": "tractor-store-preact",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": ">=21.0.0"
},
"workspaces": [
"integration",
"explore",
"decide",
"checkout"
],
"scripts": {
"start:integration": "npm -w integration start",
"start:explore": "npm -w explore start",
"start:decide": "npm -w decide start",
"start:checkout": "npm -w checkout start",
"build:explore": "npm -w explore run build",
"build:decide": "npm -w decide run build",
"build:checkout": "npm -w checkout run build",
"prod:integration": "npm -w integration run prod",
"prod:explore": "npm -w explore run prod",
"prod:decide": "npm -w decide run prod",
"prod:checkout": "npm -w checkout run prod",
"build": "npm run build:explore && npm run build:decide && npm run build:checkout",
"start": "concurrently -c dim,red,green,yellow npm:start:*",
"prod": "concurrently -c dim,red,green,yellow npm:prod:*"
},
"author": "neuland",
"license": "ISC",
"devDependencies": {
"concurrently": "^9.1.2"
}
}