-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.83 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
{
"private": "true",
"packageManager": "[email protected]",
"name": "ergsnap",
"repository": "repo-here",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "pnpm -r dev",
"build": "pnpm -r build",
"test": "run-s test:*",
"fix": "run-s fix:*",
"test:unit": "vitest run --no-coverage --environment=node",
"test:lint": "eslint . --ext js,ts",
"test:prettier": "prettier ./**/*.ts --list-different",
"fix:lint": "eslint . --ext js,ts --fix",
"fix:prettier": "prettier ./**/*.ts --write",
"watch:unit": "vitest --no-coverage --reporter=dot"
},
"devDependencies": {
"@fleet-sdk/mock-chain": "^0.3.2",
"@types/node": "^20.10.7",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.18.0",
"ergo-lib-wasm-nodejs": "^0.26.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-functional": "^6.0.0",
"eslint-plugin-import": "~2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-vue": "^9.19.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"typescript": "^5.3.3",
"vitest": "^1.1.3",
"vue-eslint-parser": "^9.3.2"
},
"engines": {
"node": ">=18.6.0",
"pnpm": ">=8"
},
"pnpm": {
"requiredScripts": [
"build",
"dev"
],
"allowedDeprecatedVersions": {
"@babel/plugin-proposal-class-static-block": "7.21.0",
"@babel/plugin-proposal-private-methods": "7.18.6",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-private-property-in-object": "7.21.11",
"ethereum-cryptography": "0.1.3"
},
"peerDependencyRules": {
"allowedVersions": {
"monaco-editor": "^0.38.0"
}
}
}
}