-
Notifications
You must be signed in to change notification settings - Fork 130
/
package.json
36 lines (36 loc) · 1.28 KB
/
package.json
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": "lunary",
"version": "1.0.0",
"private": "true",
"scripts": {
"start": "concurrently -n frontend,backend \"npm run start:frontend\" \"npm run start:backend\"",
"start:with-ml": "concurrently -n frontend,backend \"npm run start:frontend\" \"npm run start:backend\" \"npm run start:ml\"",
"start:frontend": "npm -w packages/frontend run start",
"start:backend": "npm -w packages/backend run start",
"start:ml": ". ./packages/ml/venv/bin/activate && cd packages/ml && waitress-serve --port 4242 main:app",
"build:frontend": "npm -w packages/frontend run build",
"migrate:db": "npm -w packages/backend run migrate:db",
"dev": "concurrently \"npm run dev:frontend\" \"npm run dev:backend\"",
"dev:frontend": "npm -w packages/frontend run dev",
"dev:backend": "npm -w packages/backend run dev",
"test": "npx playwright test",
"test:ui": "npx playwright test --ui",
"postinstall": "npx patch-package"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"concurrently": "^8.2.2",
"patch-package": "^8.0.0"
},
"devDependencies": {
"@playwright/test": "^1.47.0",
"@types/node": "^22.5.4",
"dotenv": "^16.4.5",
"prettier": "^3.3.3",
"tsup": "^8.2.4",
"tsx": "^4.19.0",
"typescript": "^5.5.4"
}
}