-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
45 lines (45 loc) · 1.61 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": "hkt-toolbelt",
"private": true,
"scripts": {
"jest": "jest",
"test": "NODE_OPTIONS=--max-old-space-size=8192 tsc --project tsconfig.spec.json && jest",
"stress": "NODE_OPTIONS=--max-old-space-size=24576 tsc --project tsconfig.stress.json",
"build": "./build.sh",
"build:docs": "NODE_OPTIONS=--max-old-space-size=8192 typedoc --skipErrorChecking",
"precommit": "npm run lint-check && npm run test",
"prepush": "npm run lint && npm run test && npm run stress",
"lint-check": "npm run prettier-check && npm run eslint-check",
"lint": "npm run prettier-fix && npm run eslint-fix",
"eslint-check": "eslint --ext .ts ./src/**",
"eslint-fix": "eslint --fix --ext .ts ./src/**",
"prettier-check": "prettier --check ./src/**",
"prettier-fix": "prettier --write ./src/**"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.7",
"@types/mustache": "^4.2.5",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-formatter-pretty": "^6.0.1",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.2.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unused-imports": "^3.1.0",
"jest": "^29.7.0",
"lodash": "^4.17.21",
"mustache": "^4.2.0",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"ts-jest": "^29.2.5",
"typedoc": "^0.26.7"
},
"dependencies": {
"typescript": "^5.6.2"
}
}