forked from interledger/rafiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.27 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
{
"name": "@coil/rafiki",
"version": "1.0.0",
"private": true,
"license": "Apache-2.0",
"repository": "https://github.com/coilhq/rafiki",
"scripts": {
"lint": "eslint --max-warnings=0 --fix .",
"lint:local": "eslint --max-warnings=0 --fix $INIT_CWD",
"format": "prettier --write .",
"format:local": "prettier --write $INIT_CWD",
"format:check:local": "prettier --check $INIT_CWD",
"test": "jest --passWithNoTests",
"test:local": "jest $INIT_CWD --passWithNoTests",
"build": "tsc --build",
"postinstall": "[ -d '.husky' ] && husky install || true"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@jest/types": "^26.6.2",
"@types/jest": "^26.0.22",
"@types/pino": "^6.3.7",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-react": "^7.23.2",
"husky": ">=6",
"jest": "^26.6.3",
"lint-staged": ">=10",
"prettier": "2.2.1",
"ts-jest": "^26.5.5",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.4"
},
"dependenciesMeta": {
"tigerbeetle-node": {
"built": true
}
}
}