-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.72 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
{
"name": "jest-presets",
"version": "0.0.1",
"private": true,
"description": "Presets for jest",
"author": "Stefan Natter (https://natterstefan.me)",
"license": "Apache-2.0",
"engines": {
"node": "^18.x || ^20.x"
},
"scripts": {
"lint": "FORCE_COLOR=1 turbo run lint --parallel --no-cache",
"prepare": "is-ci || husky install",
"prelerna:publish": "copyfiles LICENSE README.md packages/jest-preset-ns/",
"test": "FORCE_COLOR=1 turbo run test --parallel --no-cache",
"test:app": "FORCE_COLOR=1 turbo run test --parallel --no-cache --scope=example-app*",
"lerna:version": "HUSKY_SKIP_HOOKS=1 lerna version --no-commit-hooks --no-changelog --no-private",
"lerna:publish": "lerna publish from-package --no-private"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"repository": {
"type": "git",
"url": "https://github.com/natterstefan/jest-preset-ns.git"
},
"bugs": {
"url": "https://github.com/natterstefan/jest-preset-ns/issues"
},
"homepage": "https://github.com/natterstefan/jest-preset-ns#readme",
"devDependencies": {
"@commitlint/cli": "17.6.7",
"@commitlint/config-conventional": "17.6.7",
"@types/jest": "29.5.3",
"copyfiles": "2.4.1",
"eslint": "8.20.0",
"eslint-config-ns": "3.5.0",
"eslint-import-resolver-lerna": "2.0.0",
"eslint-plugin-import": "2.28.0",
"husky": "8.0.3",
"is-ci": "3.0.1",
"jest": "29.6.2",
"lerna": "6.6.2",
"lint-staged": "13.2.3",
"prettier": "2.8.8",
"turbo": "1.10.12",
"typescript": "5.1.6"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git update-index --again",
"jest --findRelatedTests"
]
},
"packageManager": "yarn@1.22.4"
}