-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.05 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
{
"name": "scapp-monorepo",
"private": true,
"workspaces": [
"src/back-end/*",
"src/api-gateway",
"src/front-end/*"
],
"scripts": {
"lint": "npm run lint --workspaces",
"lint:fix": "npm run lint --workspaces -- --fix",
"format": "npm run format --workspaces",
"install:all": "npm install --workspaces",
"fix": "npm run lint:fix && npm run format",
"lint:env": "npm run lint:env --workspaces --if-present",
"test:unit": "npx jest --config=config/jest.unit.config.js",
"test:integration": "npx jest --config=config/jest.integration.config.js",
"test": "npx jest --config=config/jest.config.js --coverage --coverageDirectory=coverage --coverageReporters=text --coverageReporters=html"
},
"devDependencies": {
"@eslint/js": "^9.37.0",
"@eslint/plugin-kit": "^0.2.0",
"eslint": "^9.37.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.0.0",
"prettier": "^3.0.0"
},
"dependencies": {
"file-type": "^21.0.0",
"validator": "^13.15.15"
}
}