-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
38 lines (38 loc) · 982 Bytes
/
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
{
"name": "miro-api-clients",
"private": true,
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "yarn workspace generator generate && yarn workspace @mirohq/miro-api build",
"dev": "yarn workspace client-test-app dev",
"pretest": "yarn build",
"test": "yarn workspaces run test",
"coverage": "yarn workspace generator coverage && yarn workspace @mirohq/miro-api coverage",
"format": "prettier -w ./packages",
"prepare": "husky install"
},
"author": "",
"license": "MIT",
"dependencies": {
"fast-glob": "^3.3.2",
"jest": "^29.7.0",
"lodash": "^4.17.21",
"prettier": "^2.8.7",
"tsx": "^4.10.1"
},
"devDependencies": {
"@mirohq/prettier-config": "^2.0.0",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.5",
"esbuild": "^0.21.5",
"esbuild-jest": "^0.5.0",
"husky": "^8.0.3"
}
}