-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.4 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
{
"name": "rewards-hub-lite",
"version": "1.0.0",
"engines": {
"node": ">=20.11.0"
},
"author": "Morpho Association <contact@morpho.org>",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"packages/cli"
],
"installConfig.hoistingLimits": [
"apps/subgraph"
]
},
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"postinstall": "husky install",
"lint": "eslint packages apps --ignore-path .gitignore --ext .ts,.tsx,.js",
"lint:fix": "yarn lint --fix && prettier -w packages apps"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/node": "^20.4.6",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"concurrently": "^8.2.0",
"eslint": "^8.46.0",
"eslint-config-next": "^13.4.16",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-custom": "^1.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^4.2.0",
"eslint-plugin-rxjs": "^5.0.3",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.3",
"prettier": "^2.7.1",
"serve": "^14.2.1",
"tsup": "^8.3.5",
"turbo": "^2.3.3",
"typescript": "^5.1.6",
"vitest": "^3.0.5"
},
"packageManager": "yarn@4.1.1",
"dependencies": {
"tslib": "2.4.1"
}
}