-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.39 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.39 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
{
"name": "check",
"repository": {
"type": "git",
"url": "https://github.com/getcheck/check.git"
},
"version": "0.0.5",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"examples/*",
"tutorial"
],
"scripts": {
"idl": "cp target/types/check.ts packages/core/src/idl.ts && yarn fix:eslint:idl",
"prebuild": "yarn idl",
"build": "yarn workspaces foreach -A -pt --no-private run build",
"test:program": "jest --silent",
"test": "yarn workspaces foreach -A -it --no-private run test",
"fix:prettier": "prettier --write \"**/*.ts\"",
"fix:eslint": "eslint . --format stylish --fix",
"fix:eslint:idl": "eslint packages/**/idl.ts --format stylish --fix",
"fix": "yarn fix:eslint && yarn fix:prettier",
"publish": "yarn workspaces foreach -A -pt --no-private npm publish --tolerate-republish"
},
"devDependencies": {
"@coral-xyz/anchor": "^0.29.0",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.7.0",
"prettier": "^2.7.1",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.4",
"typescript": "^4.7.4"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"packageManager": "yarn@4.4.0"
}