forked from mnfst/manifest
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 800 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 800 Bytes
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
{
"name": "manifest",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"test:ci": "turbo run test:ci --no-cache",
"lint": "turbo run lint",
"seed": "cd packages/core/manifest && npm run seed",
"prepare": "husky",
"publish-packages": "turbo run build lint test && changeset version && changeset publish"
},
"workspaces": [
"packages/**/*",
"!packages/js-sdk/sandbox"
],
"devDependencies": {
"@eslint/js": "^9.14.0",
"eslint": "^8.57.1",
"globals": "^15.12.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"turbo": "^2.1.1",
"typescript-eslint": "^8.14.0"
},
"packageManager": "npm@10.7.0",
"dependencies": {
"@changesets/cli": "^2.27.11",
"sharp": "^0.34.3"
}
}