-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.69 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
{
"name": "sandbox-typescript",
"version": "1.0.0",
"license": "MIT",
"private": true,
"scripts": {
"prepare": "husky install",
"check:lint": "eslint --fix --cache .",
"check:format": "prettier . --write",
"check:type": "tsc --project tsconfig.json --pretty --noEmit",
"check:all": "npm-run-all -s check:type check:format check:lint",
"test": "jest --runInBand",
"test:cov": "jest --runInBand --coverage=true",
"test:watch": "jest --runInBand --watch"
},
"engines": {
"npm": "Please use the pnpm.",
"yarn": "Please use the pnpm."
},
"dependencies": {
"fp-ts": "^2.16.1",
"remeda": "^1.27.1",
"ts-pattern": "^5.0.5"
},
"devDependencies": {
"@cspell/eslint-plugin": "^7.3.8",
"@tsd/typescript": "^5.2.2",
"@types/jest": "^29.5.5",
"@types/node": "20.8.6",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"@vercel/ncc": "^0.38.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-sonarjs": "^0.21.0",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-runner-tsd": "^6.0.0",
"lint-staged": "^14.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"scaffdog": "^3.0.0",
"textlint": "^13.3.3",
"textlint-rule-preset-ja-spacing": "^2.3.0",
"textlint-rule-preset-ja-technical-writing": "^8.0.0",
"textlint-rule-spellcheck-tech-word": "^5.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.2.2"
}
}