-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
30 lines (30 loc) · 1.04 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
{
"name": "e-invoice-eu",
"description": "Tools for generating EN16931 conforming electronic invoices",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "lerna run build --stream",
"format": "prettier --write *.js *.json *.md && lerna run format --stream",
"start": "lerna run start --scope=@e-invoice-eu/server",
"start:dev": "lerna run start:dev --scope=@e-invoice-eu/server",
"start:debug": "lerna run start:debug --scope=@e-invoice-eu/server",
"start:prod": "lerna run start:prod --scope=@e-invoice-eu/server",
"lint": "lerna run lint --stream",
"lint:fix": "lerna run lint:fix --stream",
"lint:staged": "lerna run --no-private lint:staged --stream",
"test": "lerna run test --stream",
"test:cov": "lerna run test:cov --stream",
"test:watch": "lerna watch -- lerna run test --scope=\\$LERNA_PACKAGE_NAME --stream",
"posttest:cov": "node merge-lcov.js apps/*",
"clean": "lerna run clean --stream",
"prepare": "husky"
},
"dependencies": {},
"devDependencies": {
"husky": "^9.1.7",
"lerna": "^8.1.9"
}
}