-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.54 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.54 KB
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
{
"name": "neftie",
"private": true,
"packageManager": "yarn@3.2.1",
"workspaces": {
"packages": [
"apps/*",
"packages/*"
],
"nohoist": [
"**/typechain",
"**/@typechain/*"
]
},
"resolutions": {
"@types/react": "17.0.47"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.31.0",
"@typescript-eslint/parser": "5.31.0",
"eslint": "8.20.0",
"eslint-import-resolver-typescript": "2.7.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-tsdoc": "0.2.16",
"eslint-plugin-unused-imports": "2.0.0",
"husky": "8.0.1",
"lint-staged": "12.5.0",
"prettier": "2.7.1"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{html,css,less,ejs}": [
"prettier --write"
],
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"scripts": {
"prepare": "husky install",
"dev": "yarn workspaces foreach -piv run dev",
"foreach": "yarn workspaces foreach -ptv --exclude 'neftie'",
"fe": "yarn workspace @neftie/frontend",
"be": "yarn workspace @neftie/backend",
"cm": "yarn workspace @neftie/common",
"pr": "yarn workspace @neftie/prisma",
"ac": "yarn workspace @neftie/api-client",
"cs": "yarn workspace @neftie/contracts",
"sg": "yarn workspace @neftie/subgraph",
"_cli": "yarn workspace @neftie/cli",
"cli": "yarn _cli cli",
"lint:fix:all": "eslint --fix --ext=ts,tsx apps packages",
"lint:all": "eslint --fix --ext=ts,tsx apps packages"
}
}