forked from pagers-org/am0318
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.45 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
{
"name": "@project/workspace",
"workspaces": [
"packages/*"
],
"private": true,
"scripts": {
"dev:taskkill": "cross-env NODE_ENV=production kill-port --port 3000,4001,9011",
"dev:bootstrap": "cross-env NODE_ENV=production lerna bootstrap --use-workspaces",
"dev:back": "yarn run dev:taskkill && lerna run --scope @project/backend dev --parallel",
"dev:front": "yarn run dev:taskkill && lerna run --scope @project/frontend dev --parallel",
"dev:stories": "yarn run dev:taskkill && lerna run --scope @project/stories start --parallel",
"dev:start": "yarn run dev:taskkill && lerna run --scope {@project/backend,@project/frontend} dev --parallel",
"build": "lerna run --parallel build",
"taskkill": "kill-port --port 3000,4001,9011",
"start": "yarn run taskkill && lerna run --scope {@project/backend,@project/frontend} start --parallel"
},
"devDependencies": {
"@babel/core": "7.17.5",
"@babel/preset-env": "7.16.11",
"@babel/preset-react": "7.16.7",
"cross-env": "^7.0.3",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.3",
"eslint-plugin-react-hooks": "^4.3.0",
"kill-port": "1.6.1",
"lerna": "^4.0.0",
"prettier": "^2.5.1",
"prettier-eslint": "^13.0.0"
},
"dependencies": {}
}