-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 998 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 998 Bytes
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
{
"name": "muse-fullstack-dapp",
"version": "1.0.0",
"description": "AI-Generated Art Marketplace - Full Stack DApp",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "concurrently \"npm run dev:frontend\" \"npm run dev:backend\"",
"dev:frontend": "npm run dev --workspace=muse-frontend",
"dev:backend": "npm run dev --workspace=muse-backend",
"build": "npm run build --workspaces",
"build:frontend": "npm run build --workspace=muse-frontend",
"build:backend": "npm run build --workspace=muse-backend",
"test": "npm run test --workspaces",
"lint": "npm run lint --workspaces",
"clean": "npm run clean --workspaces && rm -rf node_modules"
},
"devDependencies": {
"concurrently": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.45.0",
"prettier": "^3.0.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
}
}