forked from KeystoneHQ/keystone-sdk-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.39 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
{
"name": "keystone-airgaped-base",
"private": true,
"scripts": {
"clean": "lerna clean",
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"start": "lerna run start",
"prepare": "npm run clean && npm run bootstrap && npm run build",
"lint": "eslint '*/**/*.ts' --quiet --fix",
"prettier:check": "yarn prettier --check",
"prettier:fix": "yarn prettier --write",
"prettier": "prettier '*/**/*.{js,jsx,ts,tsx}'",
"test": "lerna run test"
},
"jest": {
"modulePathIgnorePatterns": [
"__data__"
],
"testEnvironment": "node"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint "
],
"*.json": [
"prettier --write"
]
},
"devDependencies": {
"@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",
"lerna": "^4.0.0",
"lint-staged": "^12.3.5",
"prettier": "^2.5.1",
"tsdx": "^0.14.1",
"typescript": "^4.6.2"
},
"dependencies": {
"uuid": "^8.3.2"
}
}