-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
96 lines (96 loc) · 2.2 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"private": true,
"name": "nori-dot-com",
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/node": "~20.4",
"@types/node-fetch": "^2.6.4",
"@types/react": "~17",
"@types/react-dom": "~17",
"codecov": "^3.8.1",
"jest": "^29.5.0",
"lerna": "^5.1.6",
"nx": "14.3.6",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
},
"scripts": {
"build": "tsc -b",
"watch": "tsc -b --watch",
"test": "jest",
"prepare": "yarn run build"
},
"resolutions": {
"@types/react-dom": "~17",
"@types/react": "~17",
"@nori-dot-com/project/ajv": "^8.12.0"
},
"workspaces": {
"nohoist": [
"@nori-dot-com/eslint-config-nori/**"
],
"packages": [
"packages/*"
]
},
"jest": {
"projects": [
{
"testMatch": [
"<rootDir>/packages/math/src/**/?(*.)+(test).[jt]s?(x)"
],
"displayName": "math",
"preset": "ts-jest"
},
{
"testMatch": [
"<rootDir>/packages/project/src/**/?(*.)+(test).[jt]s?(x)"
],
"displayName": "project",
"preset": "ts-jest",
"globals": {
"ts-jest": {
"tsconfig": "./packages/project/tsconfig.json"
}
}
},
{
"testMatch": [
"<rootDir>/packages/quantification/src/**/?(*.)+(test).[jt]s?(x)"
],
"displayName": "quantification",
"preset": "ts-jest"
},
{
"testMatch": [
"<rootDir>/packages/ggit/src/**/?(*.)+(test).[jt]s?(x)"
],
"displayName": "ggit",
"preset": "ts-jest",
"globals": {
"ts-jest": {
"tsconfig": "./packages/ggit/tsconfig.json"
}
}
},
{
"testMatch": [
"<rootDir>/packages/errors/src/**/?(*.)+(test).[jt]s?(x)"
],
"displayName": "errors",
"preset": "ts-jest"
},
{
"testMatch": [
"<rootDir>/packages/eslint-config-nori/src/**/?(*.)+(test).[jt]s?(x)"
],
"displayName": "eslint-config-nori",
"preset": "ts-jest"
}
]
},
"dependencies": {
"typedoc": "0.25.0",
"typedoc-plugin-markdown": "^3.17.1"
}
}