-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.02 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "side-quest",
"version": "0.0.0",
"description": "RPG themed task manager.",
"repository": {
"type": "git",
"url": "https://github.com/valon-loshaj/side-quest"
},
"license": "MIT",
"author": {
"name": "Valon Loshaj",
"email": "[email protected]"
},
"type": "module",
"main": "./lib/index.js",
"files": [
"lib/",
"package.json",
"LICENSE.md",
"README.md"
],
"scripts": {
"build": "pnpm build:backend && pnpm build:frontend",
"build:backend": "tsup --config tsup.config.ts",
"build:frontend": "tsup --config tsup.config.ts",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"format:check": "prettier --check \"apps/**/*.{ts,tsx,js,jsx,json,md,css,yaml,yml}\" \"*.{ts,tsx,js,jsx,json,md,css,yaml,yml}\"",
"lint": "eslint .",
"lint:backend": "eslint apps/backend/src",
"lint:fix": "eslint . --fix",
"lint:frontend": "eslint apps/frontend/src",
"lint:knip": "knip --no-exit-code --config knip.json",
"prepare": "husky",
"test": "vitest",
"tsc": "tsc --noEmit"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^8.56.0",
"@swc/core": "^1.9.1",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.18.0",
"@vitest/coverage-v8": "latest",
"@vitest/eslint-plugin": "^1.1.8",
"eslint": "^8.56.0",
"eslint-config-prettier": "latest",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin": "^1.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.13.1",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.1.6",
"knip": "^5.36.5",
"lint-staged": "latest",
"prettier": "^3.1.1",
"prettier-plugin-curly": "^0.3.1",
"prettier-plugin-packagejson": "^2.5.3",
"prettier-plugin-sh": "^0.14.0",
"tsup": "^8.3.5",
"typescript-eslint": "^8.13.0",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=18.3.0"
},
"publishConfig": {
"provenance": true
}
}