-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 895 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 895 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
{
"name": "nextlytics-monorepo",
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"e2e"
],
"scripts": {
"verify": "bun run typecheck && bun run lint && bun run format:check && bun run test",
"typecheck": "bun --filter '*' typecheck",
"build": "bun --filter '*' build",
"lint": "bun --filter '*' lint",
"test": "bun --filter '*' test",
"format": "prettier --write .",
"format:check": "prettier --check .",
"website:dev": "bun --cwd packages/website dev",
"website:start": "bun --cwd packages/website start",
"website:watch": "nodemon --watch packages/core/src --watch packages/website/src -e ts,tsx --exec 'bun run build && bun website:start'",
"e2e": "bun --cwd e2e e2e"
},
"devDependencies": {
"eslint": "^9.0.0",
"nodemon": "^3.1.11",
"prettier": "^3.5.0",
"typescript-eslint": "^8.0.0"
}
}