forked from searchkit/searchkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (48 loc) · 1.19 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
{
"name": "searchkit-monorepo",
"private": true,
"workspaces": [
"apps/*",
"packages/*",
"sample-data",
"examples/*"
],
"repository": {
"type": "git",
"url": "https://github.com/searchkit/searchkit.git"
},
"license": "Apache-2.0",
"scripts": {
"test": "turbo run test --filter='./packages/*'",
"build": "turbo run build --filter='./packages/*'",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"changeset": "changeset",
"publish-packages": "yarn build && yarn lint && yarn test && changeset version && changeset publish"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^18.0.0",
"@types/react": "^18.0.25",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.0.1",
"eslint-config-custom": "*",
"husky": "^4.3.0",
"prettier": "^2.1.2",
"turbo": "latest",
"typescript": "^4.9.5"
},
"dependencies": {
"@changesets/cli": "^2.25.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn run lint",
"pre-push": "yarn test"
}
},
"resolutions": {
},
"version": "0.0.0"
}