-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.45 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
{
"name": "@myparcel-eslint/monorepo",
"version": "1.0.0-alpha.0",
"private": true,
"description": "A collection of ESLint configurations.",
"repository": "github:myparcelnl/eslint",
"license": "MIT",
"author": "Edie Lemoine <[email protected]>",
"workspaces": [
"packages/**"
],
"scripts": {
"build": "nx run-many --target=build",
"clean": "nx run-many --target=clean",
"prepare": "is-ci || husky install",
"ws:build": "cd $0 && sh $NX_WORKSPACE_ROOT/scripts/build.sh",
"ws:clean": "cd $0 && rimraf dist index.js"
},
"lint-staged": {
"*.md": "prettier --write",
"*.ts": "eslint --fix",
"package.json": "npx sort-package-json"
},
"resolutions": {
"nx": "16.5.3"
},
"devDependencies": {
"@monodeploy/plugin-github": "^1.0.0",
"@myparcel-eslint/eslint-config-es6": "workspace:*",
"@myparcel-eslint/eslint-config-esnext": "workspace:*",
"@myparcel-eslint/eslint-config-typescript": "workspace:*",
"@nrwl/nx-cloud": "^16.0.0",
"@types/eslint": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"conventional-changelog-conventionalcommits": "^6.0.0",
"eslint": "^8.0.0",
"husky": "^8.0.0",
"is-ci": "^3.0.0",
"lint-staged": "^13.0.0",
"monodeploy": "^4.0.0",
"nx": "^16.0.0",
"plop": "^3.0.0",
"rimraf": "^5.0.0",
"tsup": "^7.0.0",
"typescript": "^5.0.0"
},
"packageManager": "[email protected]"
}