forked from Dcard/yarn-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.42 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "eslint . --ext .js,.ts",
"test": "jest --config integration/jest.config.js"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
]
},
"repository": {
"type": "git",
"url": "https://github.com/Dcard/yarn-plugins.git"
},
"dependencies": {
"@yarnpkg/pnpify": "^2.4.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@types/eslint": "7.2.0",
"@types/eslint-plugin-prettier": "3.1.0",
"@types/execa": "2.0.0",
"@types/fs-extra": "9.0.1",
"@types/globby": "9.1.0",
"@types/jest": "^26.0.9",
"@types/js-yaml": "3.12.5",
"@types/prettier": "2.0.2",
"@types/semantic-release": "17.1.0",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^24.0.0",
"eslint-plugin-prettier": "^3.1.4",
"execa": "^4.0.3",
"fs-extra": "^9.0.1",
"globby": "^11.0.1",
"husky": "^4.3.0",
"jest": "^26.4.2",
"jest-extended": "^0.11.5",
"js-yaml": "^3.14.0",
"lint-staged": "^10.3.0",
"prettier": "^2.1.1",
"semantic-release": "^17.1.1",
"tmp-promise": "^3.0.2",
"ts-jest": "26.3.0",
"typescript": "^4.0.2"
}
}