forked from mydefichain/walletkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.18 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.18 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
{
"name": "@mydefichain/walletkit",
"description": "Collection of components to be used for developing Wallet applications for DeFiChain.",
"version": "0.0.0",
"private": true,
"files": [],
"scripts": {
"prepare": "husky install",
"write": "turbo run write",
"clean": "turbo run clean",
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint -- --fix",
"format": "prettier --write ."
},
"devDependencies": {
"@birthdayresearch/eslint-config": "^0.3.8",
"@birthdayresearch/sticky-turbo": "^0.3.8",
"@waveshq/standard-defichain-jellyfishsdk": "^0.41.1",
"@waveshq/standard-prettier": "^0.41.1",
"@waveshq/standard-web": "^0.41.1",
"@waveshq/standard-web-linter": "^0.41.1",
"@waveshq/walletkit-core": "workspace:*"
},
"eslintConfig": {
"extends": [
"@birthdayresearch"
],
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"check-file/filename-naming-convention": "off"
}
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
},
"prettier": "@waveshq/standard-prettier",
"engines": {
"node": "^16.6.0",
"pnpm": ">=7.18.0"
}
}