forked from p2p-org/p2p-wallet-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 879 Bytes
/
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
{
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"start": "lerna run start",
"build": "lerna run build",
"prepare": "husky install",
"predeploy": "npm run build",
"deploy": "lerna run deploy",
"lint": "lerna run lint",
"precommit": "lint-staged"
},
"devDependencies": {
"@commitlint/cli": "^14.1.0",
"@commitlint/config-conventional": "^14.1.0",
"@p2p-wallet-web/eslint-config-react": "^1.0.0",
"@rushstack/eslint-patch": "^1.1.0",
"eslint": "^7.32.0",
"eslint-plugin-unused-imports": "^1.1.5",
"gh-pages": "^3.2.3",
"husky": "^7.0.2",
"lerna": "^4.0.0",
"lint-staged": "^11.2.2",
"prettier": "^2.4.1",
"typescript": "^4.5.4"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix",
"*.{js,json,jsx,html,css,md}": "prettier --write"
}
}