forked from snapdao/btcsnap
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 874 Bytes
/
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
{
"name": "root",
"private": true,
"jest": {
"modulePathIgnorePatterns": [
"__data__"
],
"testMatch": [
"**/__tests__/**/?(*.)+(spec|test).[jt]s?(x)"
],
"testEnvironment": "node"
},
"scripts": {
"test": "lerna run test"
},
"devDependencies": {
"@babel/preset-env": "^7.9.6",
"@babel/preset-typescript": "^7.9.0",
"@types/jest": "^25.2.3",
"@types/node": "^12.12.35",
"@types/sinon": "^7.5.2",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"eslint-plugin-react": "^7.27.1",
"eslint": "^7.11.0",
"jest": "^27.5.1",
"lerna": "^4.0.0",
"sinon": "^9.0.1",
"tsdx": "^0.14.1",
"typescript": "4.3.5"
},
"workspaces": [
"packages/*"
],
"resolutions": {
"@types/react": "^17.0.40"
},
"packageManager": "[email protected]"
}