-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
55 lines (55 loc) · 1.82 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
{
"name": "algo-builder",
"description": "Framework to automate development of Algorand Assets and Smart Contracts.",
"homepage": "https://algobuilder.dev",
"repository": "https://github.com/scale-it/algo-builder.git",
"packageManager": "[email protected]",
"license": "Apache-2.0",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"engines": {
"node": ">=14.11.0",
"yarn": ">=3.2.0",
"packageManager": "[email protected]"
},
"scripts": {
"cleanup": "./cleanup.sh",
"build": "yarn workspaces foreach -t run build",
"build:apidocs": "yarn workspaces foreach -t run build:docs",
"build:apidocs-push": "yarn workspaces foreach -t run build:docs; git add docs; git ci -am 'generating api docs' -n; HUSKY=0 git push -f",
"build:watch": "tsc --build --watch packages/web packages/runtime packages/algob",
"test": "yarn workspaces foreach -p run test",
"test:watch": "yarn workspaces foreach run test:watch:p",
"format": "prettier --loglevel warn --write .",
"format:check": "prettier --check .",
"lint": "yarn workspaces foreach -p run lint",
"lint:check": "yarn workspaces foreach -p run lint:check",
"coverage": "yarn workspaces foreach -p run coverage",
"prepare": "husky install",
"algob": "yarn workspace @algo-builder/algob algob",
"check:only": "./check_only.sh"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-sonarjs": "^0.16.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"mocha": "^10.1.0",
"prettier": "^2.7.1",
"typescript": "4.7.4"
},
"lint-staged": {
"**/{src,test,scripts}/**/*.{ts,js}": [
"eslint --format stylish --fix",
"prettier --write"
]
}
}