forked from iron-fish/ironfish
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2.6 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
{
"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-react",
"config/eslint-config-ironfish",
"config/eslint-plugin-ironfish",
"ironfish",
"ironfish-rust-nodejs",
"simulator"
],
"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 -- --collect-coverage --testPathIgnorePatterns",
"typecheck": "lerna exec -- tsc --noEmit",
"typecheck:changed": "lerna exec --since origin/master --include-dependents -- tsc --noEmit",
"coverage:upload": "lerna exec '\"yarn codecov -t $CODECOV_TOKEN -f ./coverage/clover.xml -F $LERNA_PACKAGE_NAME -p $ROOT_PATH/ --disable=gcov\"'"
},
"devDependencies": {
"@types/jest": "29.2.4",
"@typescript-eslint/eslint-plugin": "4.28.1",
"@typescript-eslint/parser": "4.28.1",
"codecov": "3.8.3",
"eslint": "7.29.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-react": "7.24.0",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"jest": "29.3.1",
"jest-jasmine2": "29.3.1",
"lerna": "6.4.1",
"node-gyp": "8.4.1",
"prettier": "2.3.2",
"ts-jest": "29.0.3",
"typescript": "4.3.4"
},
"resolutions": {
"axios": "0.21.4",
"ejs": "^3.1.7",
"handlebars": "4.7.7",
"node-notifier": "8.0.1",
"eslint-plugin-import/**/json5": "^1.0.2"
}
}