forked from nounsDAO/nouns-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 975 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
35
36
37
38
39
40
41
{
"name": "root",
"private": true,
"scripts": {
"lerna": "lerna",
"build": "lerna run --parallel build",
"test": "lerna run --parallel test",
"postinstall": "lerna run --parallel postinstall",
"lint": "eslint 'packages/**/*.ts' --fix",
"format": "prettier --write 'packages/**/*.{ts,sol,md,css}' '!**/typechain/**'"
},
"devDependencies": {
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.34",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^5.0.9",
"lerna": "^3.22.1",
"mocha": "^8.4.0",
"pinst": "^2.1.6",
"prettier": "^2.3.0",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"workspaces": [
"packages/*"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js}": [
"yarn lint",
"yarn format"
]
}
}