-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.97 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.97 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
55
56
{
"name": "kokomen",
"packageManager": "[email protected]",
"private": true,
"engines": {
"node": ">=18.0.0",
"yarn": ">=4.0.0"
},
"workspaces": [
"packages/*",
"apps/client",
"apps/kokomen-webview",
"apps/kokomen-server"
],
"resolutions": {
"brace-expansion": "^2.0.2"
},
"devDependencies": {
"@inquirer/prompts": "^7.9.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"husky": "^9.1.7",
"prettier": "^3.5.3",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"scripts": {
"client": "yarn workspace @kokomen/client",
"client:dev": "yarn workspace @kokomen/client dev",
"client:test": "yarn workspace @kokomen/client test",
"server:dev": "yarn workspace @kokomen/server dev",
"server:build": "yarn workspace @kokomen/server build",
"server:start": "yarn workspace @kokomen/server start",
"webview:dev": "yarn workspace @kokomen/webview dev",
"webview:build": "yarn workspace @kokomen/webview build",
"webview:test": "yarn workspace @kokomen/webview test",
"ui:dev": "yarn workspace @kokomen/ui storybook",
"docker-dev-up": "docker-compose -f compose.dev.yaml up -d",
"client:prod": "yarn workspace @kokomen/client start",
"docker-prod-up": "docker-compose -f compose.yaml up -d",
"lint": "yarn workspace @kokomen/client lint && yarn workspace @kokomen/webview lint && yarn workspace @kokomen/ui lint",
"types:build": "yarn workspace @kokomen/types build",
"test": "yarn workspace @kokomen/client test && yarn workspace @kokomen/webview test && yarn workspace @kokomen/server test",
"lhci": "yarn workspace @kokomen/client lhci",
"build": "yarn workspace @kokomen/client build",
"prepare": "husky",
"commit": "./scripts/commit-msg-helper.js"
},
"dependencies": {
"@types/cookie-parser": "^1.4.9",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.2",
"cookie-parser": "^1.4.7"
}
}