-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.64 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
{
"name": "root",
"version": "1.0.0",
"repository": "https://github.com/iron-fish/ironfish-tank",
"private": true,
"author": "Iron Fish <[email protected]> (https://ironfish.network)",
"license": "MPL-2.0",
"workspaces": [
"fishtank",
"fishtank-cli",
"scenarios"
],
"scripts": {
"build": "lerna run build",
"build:changed": "lerna run --since origin/master --include-dependents build",
"start": "cd fishtank-cli && yarn start",
"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",
"test": "lerna run test --stream",
"simulate": "cd scenarios && yarn simulate",
"typecheck": "lerna exec -- tsc --noEmit",
"typecheck:changed": "lerna exec --since origin/master --include-dependents -- tsc --noEmit"
},
"dependencies": {
"@ironfish/sdk": "2.9.0"
},
"devDependencies": {
"@types/jest": "29.2.4",
"@typescript-eslint/eslint-plugin": "4.28.1",
"@typescript-eslint/parser": "4.28.1",
"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",
"prettier": "2.3.2",
"ts-jest": "29.0.3",
"typescript": "4.3.4"
}
}