-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 1013 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
{
"name": "portfolio-calories-counter",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/LahmerIlyas/portfolio-calories-counter.git",
"author": "Lahmer Ilyas <ilyaslahmer93@gmail.com>",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"unit-test:backend": "yarn workspace @portfolio-calories-counter/backend test",
"e2e-test:backend": "yarn workspace @portfolio-calories-counter/backend test:e2e",
"unit-test:app": "npm --prefix ./app run test",
"e2e-test:admin": "yarn workspace @portfolio-calories-counter/admin test",
"test": "run-s unit-test:backend e2e-test:backend unit-test:app e2e-test:admin",
"prepare": "npx husky install",
"prettier-format": "prettier --config .prettierrc --write './**/*.{ts,tsx}' ",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"devDependencies": {
"eslint-plugin-unused-imports": "^2.0.0",
"npm-run-all": "^4.1.5"
}
}