-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.77 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "task-sync",
"description": "Simple Project Management App",
"version": "0.1.0",
"type": "module",
"private": true,
"engineStrict": true,
"engines": {
"node": ">=20.18.0 <21"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "npm run build:shared && npm run build:be && npm run build:fe",
"build:shared": "npm run build -w shared",
"build:be": "npm run build -w backend",
"build:fe": "npm run build -w frontend",
"start:be": "npm run start -w backend",
"start:dev:be": "npm run start:dev -w backend",
"lint": "npm run lint:shared && npm run lint:be && npm run lint:fe",
"lint:shared": "npm run lint -w shared",
"lint:be": "npm run lint -w backend",
"lint:fe": "npm run lint -w frontend",
"test": "npm run test:be",
"test:be": "npm run test -w backend"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged --cwd .",
"commit-msg": "npx @commitlint/cli --edit"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/types": "^19.5.0",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"danger": "^12.3.3",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-perfectionist": "^4.0.3",
"eslint-plugin-unicorn": "^56.0.1",
"globals": "^15.12.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"simple-git-hooks": "^2.11.1",
"tsc-alias": "^1.8.10",
"typescript": "^5.7.2"
},
"author": {
"email": "[email protected]",
"name": "Kemal Idris",
"url": "https://github.com/KeidsID"
},
"license": "MIT"
}