-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.03 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
{
"name": "sigma-dao",
"repository": "https://github.com/scale-it/sigmadao-ui.git",
"packageManager": "[email protected]",
"license": "Apache-2.0",
"private": true,
"engines": {
"node": ">=16.11.0",
"yarn": ">=3.1.0"
},
"workspaces": [
"contracts/",
"dapp/"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.7.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1"
},
"scripts": {
"cleanup": "./cleanup.sh",
"build": "yarn workspaces foreach -t run build",
"format": "prettier --loglevel warn --write .",
"format:check": "prettier --check .",
"lint": "yarn workspaces foreach -p run lint",
"lint:check": "yarn workspaces foreach -p run lint:check"
},
"lint-staged": {
"**/{src,test,scripts}/**/*.{ts,js}": [
"eslint --fix --ext .js,.ts scripts src",
"prettier --write src/**/*.{js,jsx,css,scss}"
]
}
}