This repository was archived by the owner on Dec 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.32 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.32 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
{
"name": "@0xm/full-stack",
"version": "0.1.0",
"description": "A full-stack workspace using yarn and nodejs apps.",
"main": "index.js",
"repository": "https://github.com/0xMahabub/full-stack-nodejs.git",
"author": "0xMahabub <mahabub212002072@gmail.com>",
"license": "MIT",
"private": true,
"packageManager": "yarn@1.22.19",
"scripts": {
"dev": "concurrently \"yarn dev:api\" \"yarn dev:web\"",
"dev:api": "yarn workspace api dev",
"dev:web": "yarn workspace web dev",
"dev:app": "yarn workspace app start",
"prebuild": "rimraf build/api build/web",
"build": "concurrently \"yarn build:api\" \"yarn build:web\"",
"build:api": "yarn workspace api build; cd apps/api; mv dist ../../build/api",
"build:web": "yarn workspace web build; cd apps/web; mv dist ../../build/web",
"build:app": "yarn workspace app build",
"preview": "concurrently \"yarn preview:api\" \"yarn preview:web\"",
"preview:api": "node build/api/main",
"preview:web": "yarn serve build/web"
},
"engines": {
"node": "16.x"
},
"workspaces": [
"apps/*",
"packages/*"
],
"devDependencies": {
"@nestjs/cli": "^9.1.5",
"concurrently": "^7.6.0",
"create-vite": "^4.0.0",
"expo-cli": "^6.0.8",
"husky": "^8.0.2",
"rimraff": "^0.0.1-security",
"serve": "^14.1.2"
}
}