-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.27 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
{
"name": "grand-bazaar",
"version": "1.0.0",
"description": "Monorepo for Grand Bazaar, AI Trading Bot Marketplace",
"main": "index.js",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"test": "turbo run test",
"test:cov": "turbo test:cov",
"lint": "turbo run lint",
"format": "turbo run format",
"preview": "turbo run preview",
"prepare": "husky"
},
"keywords": [],
"author": "Abdulla Faraz <abdulla.faraz@gmail.com>",
"license": "MIT",
"engines": {
"node": "22.11.0"
},
"packageManager": "pnpm@9.15.4",
"devDependencies": {
"@eslint/compat": "1.2.6",
"@eslint/js": "9.19.0",
"@types/chai": "5.0.1",
"@types/chai-as-promised": "8.0.1",
"eslint": "9.19.0",
"eslint-plugin-jest": "28.11.0",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "5.0.0",
"eslint-plugin-react-refresh": "0.4.18",
"globals": "15.14.0",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "15.4.3",
"prettier": "3.4.2",
"prettier-plugin-solidity": "1.4.2",
"turbo": "2.4.0",
"typescript-eslint": "8.22.0"
},
"lint-staged": {
"*.{js, jsx,ts,tsx,sol}": [
"eslint \"**/*.ts\" --fix",
"prettier --write \"**/*.{ts,tsx,md,js,jsx,sol}\""
]
}
}