-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.72 KB
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
{
"name": "@showbie/backpack",
"private": true,
"workspaces": [
"./packages/*"
],
"scripts": {
"build": "npm run build --workspaces",
"changelog": "lerna-changelog",
"changeset": "changeset add",
"format": "prettier",
"prepare": "husky install",
"release": "npm run build && changeset publish"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix",
"package.json": "prettier --write"
},
"prettier": {
"singleQuote": true
},
"resolutions": {
"@babel/compat-data": "^7.9.0"
},
"dependencies": {
"@changesets/changelog-github": "~0.5.0",
"@changesets/cli": "~2.27.0",
"@showbie/eslint-config": "3.0.x",
"@typescript-eslint/eslint-plugin": "4.14.x",
"@typescript-eslint/parser": "4.9.x",
"eslint": "7.10.x",
"eslint-plugin-jest": "24.1.x",
"eslint-plugin-jest-dom": "3.2.x",
"eslint-plugin-react": "7.21.x",
"eslint-plugin-react-hooks": "4.2.x",
"import-sort-style-python": "1.0.2",
"lerna-changelog": "1.0.x",
"lint-staged": "12.2.1",
"prettier": "2.3.2",
"prettier-plugin-import-sort": "0.0.7",
"prettier-plugin-packagejson": "2.2.11"
},
"devDependencies": {
"husky": "^8.0.0"
},
"changelog": {
"repo": "showbie/backpack",
"labels": {
"breaking": "💣 Breaking Change",
"removed": "🗑️ Removed",
"deprecated": "🚚 Deprecated",
"changed": "♻️ Changed",
"added": "🎁 Added",
"fixed": "🐛 Fixed",
"security": "🔒 Security"
}
},
"importSort": {
".js,.jsx,.ts,.tsx": {
"parser": "babylon",
"style": "python",
"options": {
"knownFramework": [
"react",
"react-dom"
]
}
}
}
}