-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 897 Bytes
/
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
{
"name": "@lugamafe/team-pr-tracker",
"private": true,
"license": "ISC",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "npx lerna run dev",
"build": "npx lerna run build",
"lint": "eslint 'packages/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "yarn run lint --fix",
"prettier": "prettier --check 'packages/**/*.{js,jsx,ts,tsx,css,scss,json}'",
"prettier:fix": "yarn run prettier --write",
"dev-frontend": "npx lerna run dev --scope=frontend",
"dev-backend": "npx lerna run dev --scope=backend"
},
"devDependencies": {
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.32.2",
"lerna": "^6.6.1",
"prettier": "^2.8.7"
},
"volta": {
"node": "18.14.0",
"yarn": "3.4.1"
}
}