forked from nftstorage/nft.storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 928 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
{
"private": true,
"workspaces": [
"site",
"client",
"website",
"tools"
],
"scripts": {
"test": "yarn test:site && yarn test:website",
"test:client": "yarn --cwd client test",
"test:site": "yarn --cwd site test",
"test:website": "yarn --cwd website test",
"build:client:docs": "yarn --cwd client typedoc",
"build:website": "yarn --cwd website build",
"format": "prettier --write '**/*.{js,jsx,ts,tsx,md,html,css}' --ignore-path .gitignore"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"pre-push": "yarn test"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,html,css}": "prettier --write"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"devDependencies": {
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"simple-git-hooks": "^2.3.1",
"typescript": "^4.2.4"
}
}