forked from jfrconley/nornir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 2.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "nornir",
"description": "Nornir monorepo",
"author": "John Conley <[email protected]>",
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-typescript": "^7.21.4",
"@changesets/cli": "^2.26.2",
"@chialab/esbuild-plugin-html": "^0.17.2",
"@eslint/eslintrc": "^2.0.2",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"dprint": "^0.34.5",
"esbuild": "^0.17.18",
"eslint": "^8.45.0",
"eslint-config-turbo": "^1.9.2",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-no-secrets": "^0.8.9",
"eslint-plugin-sonarjs": "^0.19.0",
"eslint-plugin-unicorn": "^48.0.0",
"eslint-plugin-workspaces": "^0.9.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-html-reporters": "^3.1.4",
"jest-junit": "^15.0.0",
"plop": "^3.1.2",
"scripts": "workspace:^",
"syncpack": "^9.8.4",
"ts-patch": "^3.0.2",
"turbo": "^1.9.2",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=18.0.0",
"npm": "please use pnpm",
"pnpm": ">=6.32.4",
"yarn": "please use pnpm"
},
"license": "MIT",
"packageManager": "[email protected]",
"private": true,
"repository": "nrfcloud/account-service",
"scripts": {
"clean": "rm -rf coverage reports node_modules/.cache/turbo && pnpm clean:turbo && pnpm turbo clean:single",
"clean:turbo": "rm -rf node_modules/.cache/turbo",
"lint": "dprint check && eslint packages/* --no-error-on-unmatched-pattern --cache && syncpack-list-mismatches",
"lint:fix": "dprint fmt && eslint packages/* --no-error-on-unmatched-pattern --fix && syncpack-fix-mismatches && syncpack-format",
"prepare": "patch-typescript && husky install",
"release": "pnpm lint && pnpm build:clean && pnpm changeset publish",
"test": "compile:tests && jest-esm --json --outputFile=reports/report.json",
"watch": "pnpm -r --parallel compile:single:watch"
},
"type": "module"
}