-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.7 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
{
"name": "@searchpunch/elastic-reindex-stream",
"version": "1.0.0",
"private": true,
"type": "module",
"repository": "https://github.com/Mati365/searchpunch",
"author": "Mateusz Baginski <[email protected]>",
"license": "MIT",
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write --config ./.prettierrc.yml --ignore-unknown",
"eslint --fix --quiet"
]
},
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "NODE_ENV=development npx turbo run dev",
"build": "npx turbo run build",
"lint": "npx turbo run lint",
"test": "NODE_OPTIONS=--experimental-vm-modules npx turbo run test",
"prepare": "npx husky install",
"publish": "yarn build && npx changeset && npx changeset version && npx changeset publish",
"check:types": "npx turbo check:types --parallel"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@commitlint/types": "^18.6.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.56.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"rollup": "^4.12.0",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.1.2",
"tslib": "^2.6.2",
"turbo": "^1.12.4",
"typescript": "^5.3.3"
}
}