-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
66 lines (66 loc) · 1.79 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
56
57
58
59
60
61
62
63
64
65
66
{
"name": "keystone-airgaped-base",
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]",
"scripts": {
"clean": "./scripts/clean.sh",
"build": "pnpm -r build",
"bootstrap": "pnpm clean && pnpm install",
"lint": "eslint '*/**/*.ts' --quiet --fix",
"prettier:check": "pnpm run prettier --check",
"prettier:fix": "pnpm run prettier --write",
"prettier": "prettier '*/**/*.{js,jsx,ts,tsx}'",
"test": "pnpm -r test",
"prepack": "pnpm -r build"
},
"jest": {
"modulePathIgnorePatterns": [
"__data__"
],
"testEnvironment": "node"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint "
],
"*.json": [
"prettier --write"
]
},
"pnpm": {
"neverBuiltDependencies": [
"node-hid"
]
},
"devDependencies": {
"@babel/cli": "^7.21.5",
"@babel/core": "^7.22.1",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"git-commit-msg-linter": "^4.1.2",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.5",
"prettier": "^2.5.1",
"tsdx": "^0.14.1",
"typescript": "^4.6.2"
},
"dependencies": {
"uuid": "^8.3.2"
}
}