-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
61 lines (61 loc) · 1.74 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
58
59
60
61
{
"name": "eslint-config-ns",
"private": true,
"description": "eslint config ready to be used in multiple projects",
"author": "Stefan Natter",
"license": "MIT",
"engines": {
"node": "^18.x || ^20.x"
},
"bugs": {
"url": "https://github.com/natterstefan/eslint-config-ns/issues"
},
"homepage": "https://github.com/natterstefan/eslint-config-ns#readme",
"repository": {
"type": "git",
"url": "https://github.com/natterstefan/eslint-config-ns"
},
"scripts": {
"bootstrap": "yarn lerna clean -y && yarn install",
"lint": "FORCE_COLOR=1 turbo run lint --parallel --no-cache",
"lint:root": "eslint . --ext .js,.ts,.tsx",
"prelerna:publish": "node ./scripts/prepublish.js",
"prepare": "is-ci || husky install",
"test": "FORCE_COLOR=1 turbo run test --parallel --no-cache",
"test:app": "FORCE_COLOR=1 turbo run test --parallel --no-cache --scope=example-app*",
"test:root": "jest",
"lerna:version": "HUSKY_SKIP_HOOKS=1 lerna version --no-commit-hooks --no-changelog",
"lerna:publish": "lerna publish from-package"
},
"workspaces": {
"nohoist": [
"**/eslint-config-ns",
"**/eslint-config-ns-*"
],
"packages": [
"examples/*",
"packages/*"
]
},
"devDependencies": {
"commitizen": "^4.3.0",
"copyfiles": "^2.4.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.46.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"jest": "^29.6.2",
"jest-preset-ns": "^3.0.0",
"lerna": "^7.1.4",
"lerna-changelog": "^2.2.0",
"prettier": "^3.0.0",
"turbo": "^1.10.12",
"typescript": "^5.1.6"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"packageManager": "[email protected]"
}