forked from LimanAI/wallstr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.53 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.53 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
{
"name": "wallstr",
"version": "0.1.0",
"engines": {
"node": ">=20.11.1"
},
"type": "module",
"packageManager": "[email protected]",
"description": "wallstrAI",
"scripts": {
"build": "pnpm -F wallstr_frontend build",
"start": "pnpm -F wallstr_frontend start",
"frontend:dev": "pnpm -F wallstr_frontend dev",
"frontend:lint": "pnpm -F wallstr_frontend lint",
"frontend:format:check": "pnpm -F wallstr_frontend format:check",
"frontend:ts": "pnpm -F wallstr_frontend ts",
"frontend:test": "pnpm -F wallstr_frontend test",
"frontend:generate_openapi": "pnpm -F wallstr_frontend generate_openapi",
"generate_openapi": "pnpm backend:generate_openapi && pnpm frontend:generate_openapi",
"storybook": "pnpm -F wallstr_frontend storybook",
"docker-compose": "docker-compose -f packages/backend/docker-compose.yaml up",
"backend:dev": "cd packages/backend && task dev",
"backend:worker": "cd packages/backend && task worker",
"backend:worker:heavy": "cd packages/backend && task worker:heavy",
"backend:format": "cd packages/backend && task format",
"backend:lint": "cd packages/backend && task lint",
"backend:mypy": "cd packages/backend && task mypy",
"backend:generate_openapi": "cd packages/backend && task generate_openapi",
"prepare": "husky"
},
"keywords": [],
"author": "Guro Bokum <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"husky": "^9.1.7"
}
}