-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1021 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 1021 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
{
"name": "open-notes",
"private": true,
"version": "0.0.0",
"license": "MIT",
"type": "module",
"workspaces": [
"packages/client",
"packages/electron",
"packages/server",
"packages/shared"
],
"scripts": {
"dev": "npm run dev -w packages/client",
"build": "npm run build -w packages/client",
"build:all": "concurrently \"npm run build -w packages/client\" \"npm run build -w packages/electron\" \"npm run build -w packages/server\"",
"lint": "npm run lint -w packages/client",
"preview": "npm run preview -w packages/client",
"check-licenses": "node scripts/check-licenses.cjs",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md,css,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,md,css,yml,yaml}\"",
"postinstall": "node scripts/check-licenses.cjs"
},
"devDependencies": {
"concurrently": "^8.2.2",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"typescript": "^5.2.2"
}
}