forked from scale-it/algo-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (53 loc) · 1.79 KB
/
package.json
File metadata and controls
54 lines (53 loc) · 1.79 KB
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
{
"name": "algo-builder",
"description": "Framework to automate development of Algorand Assets and Smart Contracts.",
"repository": "https://github.com/scale-it/algo-builder.git",
"packageManager": "yarn@3.1.1",
"license": "Apache-2.0",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"engines": {
"node": ">=14.11.0",
"yarn": ">=3.1.0"
},
"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",
"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",
"lint": "yarn workspaces foreach -p run lint",
"lint:fix": "yarn workspaces foreach -p run lint:fix",
"coverage": "yarn workspaces foreach -p run coverage",
"prepare": "husky install",
"algob": "yarn workspace @algo-builder/algob algob"
},
"peerDependencies": {
"lodash": "^4.17.19"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "^8.7.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sonarjs": "^0.11.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.1",
"mocha": "^9.2.0",
"typescript": "^4.5.5"
},
"lint-staged": {
"**/{src,test,scripts}/**/*.{ts,js}": [
"eslint --format stylish --fix"
]
}
}