-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.21 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.21 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
41
42
43
{
"name": "cube-note",
"version": "2.5.0",
"private": true,
"scripts": {
"dev": "concurrently -n backend,frontend -c blue,green \"pnpm --filter backend start:dev\" \"pnpm --filter frontend start:dev\"",
"init:dev": "pnpm --filter backend run init:dev",
"test:e2e": "pnpm --filter e2e test",
"lint": "eslint .",
"prepare": "node -e \"import('husky').then(m=>m.default()).catch(()=>{})\"",
"release": "commit-and-tag-version"
},
"repository": {
"type": "git",
"url": "https://github.com/HoPGoldy/cube-note"
},
"workspaces": [
"packages/*"
],
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@eslint/js": "^9.32.0",
"commit-and-tag-version": "^12.6.1",
"concurrently": "^9.2.1",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.3",
"eslint-plugin-react-refresh": "0.4.19",
"globals": "^16.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.6.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.38.0"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"eslint --fix --ext .ts,.tsx"
]
}
}