-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.51 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.51 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "aruba-fatturazione-elettronica",
"version": "0.0.0",
"private": true,
"description": "Monorepo TypeScript per l'integrazione con le API di Fatturazione Elettronica Aruba v2",
"type": "module",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"lint": "turbo run lint",
"lint:root": "eslint .",
"typecheck": "turbo run typecheck",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
"clean": "turbo run clean && rm -rf node_modules",
"test:integration": "pnpm --filter @fatturazione-elettronica-aruba/integration-tests integration",
"test:e2e": "pnpm --filter @fatturazione-elettronica-aruba/e2e-tests e2e",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build && changeset publish"
},
"keywords": [
"aruba",
"fatturazione-elettronica",
"e-invoice",
"sdi",
"italy",
"monorepo"
],
"author": "",
"license": "MIT",
"packageManager": "pnpm@10.12.4",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.0",
"@eslint/js": "^9.0.0",
"@types/node": "^20.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.0",
"tsup": "^8.0.0",
"turbo": "^2.0.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.0.0",
"vitest": "^2.0.0"
}
}