generated from nihalgonsalves/node-typescript-eslint-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.42 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
{
"name": "@nihalgonsalves/expenses",
"description": "",
"version": "0.0.1",
"type": "module",
"author": "Nihal Gonsalves <[email protected]>",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"packageManager": "[email protected]+sha512.341db9396b6e289fecc30cd7ab3af65060e05ebff4b3b47547b278b9e67b08f485ecd8c79006b405446262142c7a38154445ef7f17c1d5d1de7d90bf9ce7054d",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "run-p --print-label 'dev:*'",
"build": "run-p 'build:*'",
"build:tsc": "tsc --build",
"build:fe": "yarn fe build:vite",
"build:be": "yarn be build",
"start": "run-p 'start:*'",
"start:fe": "yarn fe preview:vite",
"start:be": "yarn be start",
"start:e2e": "yarn build:be && yarn run-p start:be 'fe dev:vite'",
"clean": "git clean -Xdf --exclude='!packages/backend/.env'",
"test": "vitest",
"lint": "run-p 'lint:*'",
"lint:eslint": "eslint",
"lint:sherif": "sherif",
"lint:format": "prettier . --check",
"format": "prettier . --write",
"fe": "yarn workspace @nihalgonsalves/expenses-frontend",
"be": "yarn workspace @nihalgonsalves/expenses-backend",
"e2e": "yarn workspace @nihalgonsalves/expenses-e2e",
"dev:fe": "yarn fe dev",
"dev:be": "yarn be dev",
"dev:build": "yarn build:tsc --watch --preserveWatchOutput",
"validate": "run-p --continue-on-error build 'lint:eslint --fix' 'test --no-watch --reporter=dot' 'format --log-level=warn'"
},
"devDependencies": {
"@nihalgonsalves/esconfig": "~0.10.12",
"@types/node": "22",
"@vitest/ui": "^2.1.4",
"eslint": "^9.13.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-compiler": "19.0.0-beta-9ee70a1-20241017",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"eslint-plugin-storybook": "^0.10.1",
"eslint-plugin-unused-imports": "^4.1.4",
"knip": "^5.34.2",
"lefthook": "^1.8.1",
"npm-run-all2": "^7.0.1",
"prettier": "^3.3.3",
"prettier-plugin-prisma": "^5.0.0",
"prettier-plugin-sql": "^0.18.1",
"prettier-plugin-tailwindcss": "^0.6.8",
"sherif": "^1.0.1",
"type-fest": "^4.26.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.0",
"vitest": "^2.1.4"
}
}