-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.28 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.28 KB
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
{
"name": "@statikapi/monorepo",
"private": true,
"type": "module",
"version": "0.6.4",
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "eslint . --ext .js,.mjs,.cjs",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"test": "pnpm -r test",
"test:watch": "pnpm -r test --watch",
"dev": "concurrently -n API,UI -c cyan,magenta \"pnpm -C example/basic dev --no-ui --keep-alive\" \"pnpm -C packages/ui dev\"",
"ui:preview": "pnpm -C packages/ui preview",
"ui:build": "pnpm -C packages/ui build && node packages/cli/scripts/embed-ui.js",
"cf:build": "pnpm -C example/cloudflare build",
"cf:watch": "pnpm -C example/cloudflare watch",
"cf:dev:wrangler": "pnpm -C example/cloudflare dev:wrangler",
"cf:dev": "pnpm -C example/cloudflare dev",
"prepublishOnly": "pnpm -r test"
},
"devDependencies": {
"@eslint/js": "^9",
"@statikapi/adapter-cf": "workspace:^",
"concurrently": "^9.0.0",
"eslint": "^9.36.0",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^17.23.1",
"eslint-plugin-promise": "^6.6.0",
"globals": "^16.4.0",
"prettier": "^3.3.3",
"wrangler": "^4.47.0"
},
"keywords": [],
"author": "zonayedpca",
"license": "MIT"
}