-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
65 lines (65 loc) · 2.01 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
63
64
65
{
"name": "@modus/gimbal-monorepo",
"version": "0.0.0",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"build:check": "lerna run build:check",
"build:examples": "./bin/build_examples.sh",
"clean": "rimraf '{examples,packages}/**/{build,lib,dist,package-lock.json}' '**/node_modules' '**/coverage'",
"lerna:version": "lerna version patch --exact --force-publish --yes",
"link": "lerna run link",
"lint": "lerna run lint",
"lint-staged": "lint-staged",
"postinstall": "yarn run bootstrap",
"test": "lerna run test --stream",
"test:coveralls": "cat ./coverage/lcov.info | coveralls",
"test:examples": "./bin/test_examples.sh",
"test:nocov": "lerna run test:nocov --stream",
"version:check": "versionator --exclude 'examples/**/package.json'"
},
"husky": {
"hooks": {
"pre-commit": "yarn run lint-staged"
}
},
"lint-staged": {
"packages/**/bin/**/*.{js,jsx,ts,tsx},packages/**/src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"git add"
]
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@mitchellsimoens/versionator": "1.0.2",
"@types/jest": "24.0.18",
"@types/node": "12.7.4",
"@typescript-eslint/eslint-plugin": "2.3.3",
"@typescript-eslint/parser": "2.3.3",
"@zerollup/ts-transform-paths": "1.7.3",
"eslint": "6.5.1",
"eslint-config-airbnb": "18.0.1",
"eslint-config-prettier": "6.4.0",
"eslint-import-resolver-lerna": "1.1.0",
"eslint-import-resolver-typescript": "2.0.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jest": "22.17.0",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.1",
"eslint-plugin-react": "7.16.0",
"husky": "3.0.8",
"jest": "24.9.0",
"lerna": "3.17.0",
"lint-staged": "9.4.2",
"prettier": "1.18.2",
"rimraf": "3.0.0",
"ts-jest": "24.1.0",
"ts-node": "8.4.1",
"tsconfig-paths": "3.9.0",
"ttypescript": "1.5.7",
"typescript": "3.6.4"
}
}