-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.3 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
{
"name": "@hiive/table-reducers",
"version": "0.0.0",
"type": "module",
"main": "dist/shared.umd.js",
"module": "dist/shared.es.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"lint": "eslint . --ext ts --max-warnings 0",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"generate-barrels": "barrelsby -d ./src -l all -e **/*.test.ts -E -D && bun run lint -- --fix",
"test": "vitest run",
"test:watch": "vitest",
"postinstall": "husky install",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"barrelsby": "^2.8.1",
"eslint": "^8.54.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-fp-ts": "^0.3.2",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.0",
"prettier": "^3.1.0",
"typescript": "^5.2.2",
"vite": "^5.0.0",
"vite-plugin-checker": "^0.6.2",
"vite-plugin-dts": "^3.6.3",
"vitest": "^0.34.6"
},
"dependencies": {
"fp-ts": "^2.16.1"
}
}