-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 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
{
"name": "@spherehq/platform-root",
"version": "0.0.0",
"repository": "https://github.com/spherehq/sphere.git",
"license": "MIT",
"author": "Jason Brown",
"private": true,
"scripts": {
"postinstall": "npx typesync",
"start": "lerna run start --scope='@spherehq/*' --stream",
"build": "lerna run build --scope='@spherehq/*' --stream",
"lint": "tslint --fix --project tsconfig.json",
"test": "lerna run test --scope='@spherehq/*' --stream",
"test:unit:update": "lerna run --scope='@spherehq/*' --stream test:unit -- -u",
"test:changed": "lerna run test --scope='@spherehq/*' --since master",
"publish": "lerna publish --conventional-commits --github-release --no-commit-hooks --yes"
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn lint",
"git add"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "pretty-quick --staged && yarn lint"
}
},
"devDependencies": {
"@commitlint/config-conventional": "8.3.4",
"@types/dotenv": "6.1.1",
"@types/prettier": "1.19.1",
"@types/react": "16.14.20",
"@types/react-dom": "16.9.14",
"commitlint": "8.3.5",
"dotenv": "8.6.0",
"husky": "3.1.0",
"lerna": "3.22.1",
"lint-staged": "8.2.1",
"prettier": "1.19.1",
"pretty-quick": "1.11.1",
"tslint": "5.20.1",
"tslint-config-airbnb": "5.11.2",
"tslint-config-prettier": "1.18.0",
"tslint-react-a11y": "1.1.0",
"typescript": "3.9.10"
},
"workspaces": {
"packages": [
"packages/*"
]
}
}