-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
83 lines (83 loc) · 2.36 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@smartinvoicexyz/mono",
"version": "0.1.0",
"dependencies": {
"lodash": "^4.17.21",
"next": "^14.2.13"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.1",
"@changesets/cli": "^2.27.8",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"async-prompt": "^1.0.1",
"conventional-changelog-cli": "^5.0.0",
"dotenv": "^16.3.1",
"eslint": "8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.5",
"it-all": "^1.0.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.9",
"only-allow": "^1.2.1",
"prettier": "^3.3.3",
"syncpack": "^13.0.0",
"typescript": "^5.5.4"
},
"keywords": [
"escrow",
"ethereum",
"smart-invoice",
"workspaces"
],
"license": "MIT",
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,sol}": [
"prettier --write",
"syncpack format"
]
},
"private": true,
"scripts": {
"changelog": "echo 'generate master changelog' && conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"clean": "pnpm -r clean",
"dapp:dev": "pnpm --filter '@smartinvoicexyz/dapp' dev",
"format": "prettier --ignore-path .prettierignore --write --plugin=prettier-plugin-solidity \"{*,**/*}.{js,jsx,ts,tsx,json,md,sol}\"",
"lint": "pnpm -r lint",
"lint-staged": "lint-staged",
"preinstall": "only-allow pnpm",
"syncpack": "syncpack list-mismatches",
"typecheck": "pnpm -r typecheck",
"update-deps": "pnpm update -i -r --latest"
},
"workspaces": {
"nohoist": [
"**/@graphprotocol/graph-ts",
"**/@graphprotocol/graph-ts/**",
"**/@nomiclabs/**",
"**/solidity-coverage",
"**/bulma",
"**/@ethersproject/**",
"**/@docusaurus/**"
],
"packages": [
"packages/*"
]
}
}