-
Notifications
You must be signed in to change notification settings - Fork 574
/
package.json
64 lines (64 loc) · 2.37 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
{
"name": "root",
"version": "1.0.0",
"repository": "https://github.com/iron-fish/ironfish",
"private": true,
"author": "Iron Fish <contact@ironfish.network> (https://ironfish.network)",
"license": "MPL-2.0",
"workspaces": [
"ironfish-cli",
"config/eslint-config-ironfish",
"config/eslint-plugin-ironfish",
"ironfish",
"ironfish-rust-nodejs"
],
"scripts": {
"build": "lerna run build",
"build:changed": "lerna run --since origin/master --include-dependents build",
"build:docs": "lerna run build:docs",
"clean": "lerna run clean && lerna exec -- rm -rf ./build",
"lint": "lerna run lint -- --max-warnings=0",
"lint:changed": "lerna run --since origin/master --include-dependents lint",
"lint:fix": "lerna run lint:fix",
"lint:ci": "lerna run lint:ci",
"postinstall": "(cd ironfish-rust-nodejs && yarn build)",
"test": "lerna run test --stream",
"test:coverage": "lerna run test --stream --concurrency 1 -- --collect-coverage",
"test:coverage:html": "lerna run test:coverage:html --stream",
"test:changed": "lerna run --since origin/master --include-dependents test",
"test:update": "lerna run test -- -u",
"test:update:changed": "lerna run --since origin/master --include-dependents test -- -u",
"test:slow": "lerna run test:slow",
"test:slow:coverage": "lerna run test:slow --stream -- --testPathIgnorePatterns --collect-coverage",
"test:perf:report": "lerna run test:perf:report",
"typecheck": "lerna exec -- tsc --noEmit",
"typecheck:changed": "lerna exec --since origin/master --include-dependents -- tsc --noEmit"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "6.19.0",
"@typescript-eslint/parser": "6.19.0",
"codecov": "3.8.3",
"eslint": "8.56.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-jest": "27.1.6",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"jest": "29.7.0",
"jest-jasmine2": "29.7.0",
"lerna": "6.4.1",
"node-gyp": "8.4.1",
"prettier": "2.3.2",
"ts-jest": "29.1.1",
"typescript": "5.0.4"
},
"resolutions": {
"axios": "1.7.7",
"ejs": "^3.1.7",
"handlebars": "4.7.7",
"node-notifier": "8.0.1",
"eslint-plugin-import/**/json5": "^1.0.2",
"@ledgerhq/errors": "^6.19.1"
}
}