-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.73 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.73 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
{
"name": "@marsai/root",
"private": true,
"workspaces": [
"packages/database",
"packages/backend",
"packages/frontend",
"packages/i18n"
],
"engines": {
"node": ">=24"
},
"scripts": {
"dev:backend": "npm run dev -w @marsai/backend",
"dev:frontend": "npm run dev -w @marsai/frontend",
"db:migrate": "npx -w @marsai/database prisma migrate dev",
"db:generate": "npm run generate -w @marsai/database",
"db:studio": "npm run studio -w @marsai/database",
"db:reset": "npm -w @marsai/database run db:reset",
"db:seed": "npm run db:seed -w @marsai/database",
"build": "npm run build --workspaces --if-present",
"type-check": "npm run type-check --workspaces --if-present",
"test": "npm run test:run --workspaces --if-present",
"docs": "typedoc",
"docs:database": "npm run docs -w @marsai/database",
"docs:backend": "npm run docs -w @marsai/backend",
"docs:frontend": "npm run docs -w @marsai/frontend",
"i18n:extract": "npm run i18n:extract -w @marsai/i18n",
"i18n:extract:ci": "npm run i18n:extract:ci -w @marsai/i18n",
"i18n:lint": "npm run i18n:lint -w @marsai/i18n",
"preview:frontend": "npm run preview -w @marsai/frontend"
},
"description": "An AI film festival application",
"homepage": "https://github.com/ebouchut/mars-ai-project#readme",
"bugs": {
"url": "https://github.com/ebouchut/mars-ai-project/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ebouchut/mars-ai-project.git"
},
"license": "ISC",
"author": "A-Team: https://github.com/ebouchut/mars-ai-project?tab=readme-ov-file#authors",
"type": "module",
"directories": {
"doc": "docs"
},
"devDependencies": {
"typedoc": "^0.28.17"
}
}