-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.84 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
84
85
{
"private": true,
"name": "email-types",
"workspaces": [
"packages/*"
],
"scripts": {
"postinstall": "lerna bootstrap",
"clean": "rm -rf ./packages/*/{*.tsbuildinfo,dist}",
"clean:prune": "rm -rf ./{,*/,**/*/}{node_modules,coverage,*.lock,*.log,*.tsbuildinfo,dist}",
"build": "yarn clean && yarn build:data && yarn scripts:build && yarn types",
"build:data": "yarn workspace @email-types/data build",
"scripts:build": "yarn workspace @email-types/scripts build",
"scripts:prerelease": "yarn workspace @email-types/scripts prerelease",
"test": "yarn build && yarn lint && yarn jest:coverage",
"jest": "jest --colors --logHeapUsage",
"jest:coverage": "yarn jest --coverage",
"lint": "eslint . --ext js,jsx,ts,tsx --max-warnings=0 --report-unused-disable-directives",
"prettier": "prettier \"**/*.{js,jsx,ts,tsx,md,mdx,json}\" --write",
"types": "tsc --build packages/*/tsconfig.json",
"prerelease": "yarn build && yarn scripts:prerelease",
"release": "yarn prerelease && lerna publish",
"release:publish": "yarn prerelease && lerna publish from-git",
"release:version": "lerna version --conventional-commits --changelog-preset conventional-changelog-beemo --create-release github --push",
"canary:version": "lerna version prerelease --preid canary --conventional-commits --changelog-preset conventional-changelog-beemo --create-release github --push"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,md,mdx,json}": [
"yarn prettier"
],
"**/*.{js,jsx,ts,tsx}": [
"yarn lint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/preset-typescript": "^7.7.7",
"@postmates/eslint-config": "^5.1.1",
"@types/eslint": "^6.1.3",
"@types/jest": "^24.0.24",
"@types/node": "^12.12.21",
"@types/prettier": "^1.19.0",
"@typescript-eslint/eslint-plugin": "^2.7.0",
"@typescript-eslint/parser": "^2.7.0",
"conventional-changelog-beemo": "^1.6.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jest": "^23.1.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^3.0.9",
"jest": "^24.9.0",
"lerna": "^3.19.0",
"lint-staged": "^10.0.0-1",
"prettier": "^1.19.1",
"react": "^16.12.0",
"typescript": "^3.7.4"
},
"keywords": [
"css-in-js",
"css",
"definitions",
"email",
"html",
"react",
"typescript",
"types"
],
"author": "buames",
"repository": {
"type": "git",
"url": "git+https://github.com/email-types/email-types.git"
},
"license": "MIT"
}