-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 966 Bytes
/
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
{
"name": "paytm",
"private": true,
"scripts": {
"build": "turbo build --env-mode=loose",
"dev": "turbo dev",
"lint": "lint-staged",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"db": "turbo db:push db:generate",
"prepare": "husky install",
"lint:check": "eslint . --ext .ts,.tsx --max-warnings 0"
},
"lint-staged": {
"apps/*.{js,ts,tsx,jsx}": [
"eslint --fix"
],
"*.{json,md,html,js,jsx,ts,tsx}": [
"prettier --write"
]
},
"devDependencies": {
"@types/node": "^20.14.9",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"lint-staged": "^15.2.7",
"prettier": "3.3.2",
"ts-node": "^10.9.2",
"turbo": "^2.0.6",
"typescript": "^5.5.3"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"axios": "^1.7.2"
}
}