-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.21 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
{
"private": true,
"scripts": {
"deploy": "yarn workspace nfist-hub deploy",
"test": "yarn workspace dev-nfist-hub test",
"clean": "yarn workspace nfist-hub clean",
"build": "yarn workspace nfist-hub build",
"develop": "yarn workspace nfist-hub develop",
"serve": "yarn workspace nfist-hub serve",
"format": "prettier --write --ignore-path .gitignore \"**/*.+(js|jsx|json|yml|yaml|css|less|scss|ts|tsx|graphql|md|mdx)\"",
"lint": "yarn workspaces run lint"
},
"workspaces": [
"dev-nfist-hub",
"nfist-hub"
],
"repository": {
"type": "git",
"url": "https://github.com/konstantinmuenster/NFISTHub.git"
},
"devDependencies": {
"gh-pages": "^6.1.1",
"husky": "4",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.+(ts|tsx)": [
"yarn lint"
],
"*.+(js|jsx|json|yml|yaml|css|less|scss|ts|tsx|md|graphql|mdx)": [
"yarn format"
]
},
"dependencies": {
"gatsby-remark-embed-youtube": "^0.0.7"
}
}