This repository has been archived by the owner on Feb 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
62 lines (62 loc) · 1.55 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"private": true,
"name": "root",
"workspaces": {
"packages": [
"packages/*",
"examples/*"
]
},
"scripts": {
"setup": "lerna bootstrap; yarn run link; yarn build",
"link": "lerna exec --no-private -- yarn link",
"unlink": "lerna exec --no-private -- yarn unlink",
"clean": "lerna run clean",
"start": "lerna run start --ignore \"@examples/*\" --stream",
"build": "lerna run build --ignore \"@examples/*\"",
"release": "lerna version --force-publish",
"prettier": "prettier --write '**/*.{json,md,js,jsx,ts,tsx}'",
"test": "lerna run build --scope \"@examples/*\"",
"test:prettier": "prettier --list-different '**/*.{json,md,js,jsx,ts,tsx}'"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{ts,tsx,js,json,md}": [
"prettier --write",
"git add"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"printWidth": 100
},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"husky": "^1.3.1",
"lerna": "^3.13.1",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"rimraf": "^2.6.3",
"tslint": "^5.14.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.3333"
},
"dependencies": {
"gatsby": "^2.13.37",
"react": "^16.8.4",
"react-dom": "^16.8.4"
},
"version": "3.4.0"
}