-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
56 lines (56 loc) · 1.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
{
"name": "apillon-web3-tools",
"version": "3.0.0",
"description": "Monorepo for Apillon tools",
"author": "Apillon",
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"test": "npx turbo run test",
"cli-install": "npx turbo run cli-install",
"dev": "npx turbo run dev",
"publish-beta": "npx turbo run publish-beta",
"build": "npx turbo run build",
"lint": "npx turbo run lint"
},
"engines": {
"npm": ">=8.4.0",
"node": ">=16.17.0"
},
"packageManager": "[email protected]",
"devDependencies": {
"@types/jest": "^29.5.12",
"eslint-config-common": "*",
"jest": "29.7.0",
"prettier": "latest",
"rimraf": "^5.0.5",
"ts-jest": "29.1.2",
"turbo": "latest"
},
"jest": {
"testTimeout": 1800000,
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"testPathIgnorePatterns": [
"dist/*"
],
"testRegex": ".*\\.test\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverage": false,
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"preset": "ts-jest",
"verbose": true
}
}