-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.93 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.93 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
47
48
49
50
51
52
53
54
{
"name": "verseledger",
"version": "0.1.0",
"license": "FSL-1.1-ALv2",
"private": true,
"workspaces": [
"apps/*",
"libs/*"
],
"scripts": {
"postinstall": "preconstruct dev && manypkg check",
"clean": "yarn manypkg exec rm -rf node_modules && manypkg exec rm -rf dist && rm -rf node_modules",
"test": "yarn test:server && yarn test:client",
"test:client": "yarn manypkg run client test",
"test:server": "yarn manypkg run server test",
"lint": "yarn manypkg exec yarn lint",
"lint:fix": "yarn lint",
"lint:check": "yarn manypkg run server lint:check && yarn manypkg run vl-shared lint:check && manypkg run client lint:check",
"cypress": "yarn manypkg run client cypress run --browser chrome",
"cypress:develop": "yarn manypkg run client cypress open --browser chrome",
"dev": "concurrently -p \"[{name}]\" -n \"CLIENT,SERVER\" -c \"bgGreen.bold,bgBlue.bold\" \"manypkg run client dev\" \"manypkg run server dev\"",
"build": "yarn manypkg run client build",
"start": "yarn db:migrate && concurrently -p \"[{name}]\" -n \"CLIENT,SERVER\" -c \"bgGreen.bold,bgBlue.bold\" \"manypkg run client serve\" \"manypkg run server serve\"",
"start:stg": "docker compose -f docker-compose.staging.yml up --build -d",
"docker:local": "docker compose --profile local up"
},
"devDependencies": {
"@babel/core": "7.28.5",
"@babel/preset-env": "7.28.5",
"@babel/preset-typescript": "7.28.5",
"@changesets/cli": "2.29.8",
"@manypkg/cli": "0.25.1",
"@preconstruct/cli": "2.8.12",
"@vitest/ui": "4.0.15",
"concurrently": "9.2.1",
"eslint": "9.39.1",
"openapicmd": "2.7.0",
"prettier": "3.7.4",
"typescript": "5.9.3",
"vite": "7.2.6",
"vitest": "4.0.15"
},
"preconstruct": {
"packages": [
"libs/*"
]
},
"resolutions": {
"@types/mime": "3.0.4",
"express": "5.1.0",
"chalk": "4.1.2"
},
"packageManager": "yarn@4.12.0"
}