-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
45 lines (45 loc) · 1.41 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
{
"name": "christopherbiscardi.github.com",
"version": "1.0.0",
"description": "my website",
"main": "index.js",
"repository": "[email protected]:ChristopherBiscardi/christopherbiscardi.github.com.git",
"author": "ChristopherBiscardi <[email protected]>",
"license": "MIT",
"scripts": {
"test": "jest",
"develop": "yarn workspace www develop",
"build": "yarn workspace www build",
"update-sens8": "git subtree pull --prefix sens8 [email protected]:ChristopherBiscardi/sens8.git master --squash",
"postinstall": "patch-package"
},
"private": true,
"workspaces": ["packages/*", "vendor/*"],
"lint-staged": {
"*.{js,jsx}": ["prettier --parser babel --write", "git add"],
"*.json": ["prettier --parser json --write", "git add"],
"*.{graphql,gql}": ["prettier --parser graphql --write", "git add"],
"*.{md,markdown}": ["prettier --parser markdown --write", "git add"],
"*.mdx": ["prettier --parser mdx --write", "git add"],
"*.{css,scss}": ["prettier --parser css --write", "git add"]
},
"dependencies": {
"husky": "^1.2.0",
"jest": "^25.1.0",
"lint-staged": "^8.1.0",
"patch-package": "^6.4.7",
"prettier": "^1.15.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"testPathIgnorePatterns": ["vendor"]
},
"resolutions": {
"@mdx-js/mdx": "2.0.0-next.9",
"@mdx-js/preact": "2.0.0-next.9"
}
}