-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.05 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
37
38
{
"name": "er-movied",
"version": "1.0.0",
"description": "movied",
"main": "index.js",
"private": true,
"scripts": {
"lint": "eslint apps/**/*.ts",
"lint:fix": "eslint apps/**/*.ts --fix",
"format": "prettier --write apps/**/*.ts",
"format:check": "prettier --check apps/**/*.ts",
"start": "concurrently -c blue,yellow -n api,web \"yarn start:api\" \"yarn start:web\"",
"start:api": "yarn workspace api start",
"start:web": "yarn workspace web dev",
"build:web": "yarn workspace web build",
"build:api": "yarn workspace api build",
"build": "NODE_ENV=production yarn build:api && yarn build:web",
"prod": "NODE_ENV=production yarn workspace api start:prod"
},
"workspaces": [
"apps/*"
],
"keywords": [
"node.js",
"express.js",
"mongodb"
],
"author": "mahabubx7@gmail.com",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.2.0",
"concurrently": "^8.2.2",
"eslint": "^9.2.0",
"prettier": "^3.2.5",
"typescript-eslint": "^7.8.0"
},
"dependencies": {}
}