-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
37 lines (37 loc) · 1.01 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
{
"name": "lunchboxjs-monorepo",
"version": "1.0.0",
"description": "monorepo for lunchboxjs",
"main": "index.js",
"devDependencies": {
"@eslint/js": "^9.2.0",
"concurrently": "7.5.0",
"eslint": "^8.57.0",
"typescript": "^5.4.5",
"typescript-eslint": "^7.8.0",
"watch": "^0.13.0"
},
"scripts": {
"dev": "npm -w lunchboxjs run dev",
"build": "npm -w lunchboxjs run build",
"lint": "eslint .",
"docs:dev": "npm -w docs run docs:dev",
"docs:build": "npm -w docs run docs:build",
"cy:open": "npm -w lunchboxjs run cy:open",
"test": "npm -w lunchboxjs run test",
"publish": "npm run build && npm -w lunchboxjs publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/breakfast-studio/lunchboxjs.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/breakfast-studio/lunchboxjs/issues"
},
"homepage": "https://github.com/breakfast-studio/lunchboxjs#readme",
"workspaces": [
"packages/*"
]
}