-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
83 lines (83 loc) · 2.33 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run --stream build",
"clean": "lerna run --parallel clean",
"commit": "git-cz",
"develop": "lerna run --parallel --scope otion-example-gatsby --include-dependencies develop",
"format": "prettier --ignore-path .gitignore --write .",
"postinstall": "lerna bootstrap",
"lint": "eslint --ignore-path .gitignore \"**/*.{ts,tsx,js,jsx}\"",
"publish": "lerna publish from-git --yes",
"release": "dotenv -- lerna version --create-release github",
"test": "jest && bundlesize --enable-github-checks",
"type-check": "lerna run type-check"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,yml,md}": "prettier --write",
"*.{ts,tsx,js,jsx}": "eslint --fix"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.3.3",
"@types/jest": "^26.0.10",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"@wessberg/rollup-plugin-ts": "^1.3.3",
"bundlesize2": "^0.0.26",
"commitizen": "^4.2.0",
"cz-conventional-changelog": "^3.2.1",
"del-cli": "^3.0.1",
"dotenv-cli": "^3.2.0",
"eslint": "^7.7.0",
"eslint-config-airbnb-typescript": "^10.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"eslint-plugin-simple-import-sort": "^5.0.3",
"husky": "^4.2.5",
"jest": "^26.4.2",
"lerna": "^3.22.1",
"lint-staged": "^10.2.11",
"prettier": "^2.1.0",
"prettier-plugin-packagejson": "^2.2.5",
"rollup": "^2.26.5",
"rollup-plugin-terser": "^7.0.0",
"ts-jest": "^26.2.0",
"typescript": "^4.0.2"
},
"bundlesize": [
{
"path": "./packages/otion/dist-deno/*.min.*js",
"maxSize": "3 kB"
}
]
}