forked from samchouse/utils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.7 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.7 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
{
"name": "utils",
"version": "1.0.0",
"description": "Utilities for doing various annoying tasks",
"repository": "https://github.com/Xenfo/utils.git",
"author": "Samuel Corsi-House <chouse.samuel@gmail.com>",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/react-native",
"**/react-native/**",
"**/react-native-scripts",
"**/react-native-scripts/**",
"**/expo",
"**/expo/**",
"**/expo-*",
"**/expo-*/**",
"**/@react-navigation/**",
"**/@utils/lib",
"**/@utils/lib/**"
]
},
"scripts": {
"prepare": "is-ci || husky install",
"deduplicate": "yarn-deduplicate",
"commit": "cz"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@commitlint/cli": "^14.1.0",
"@commitlint/config-conventional": "^14.1.0",
"@commitlint/config-lerna-scopes": "^14.0.0",
"@commitlint/cz-commitlint": "^14.1.0",
"@trivago/prettier-plugin-sort-imports": "^3.1.1",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"commitizen": "^4.2.4",
"doctoc": "^2.1.0",
"eslint": "^8.2.0",
"eslint-config-marine": "^9.0.6",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"inquirer": "^8.2.0",
"is-ci": "^3.0.1",
"jest": "^27.3.1",
"lerna": "^4.0.0",
"lint-staged": "^12.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"typescript": "^4.4.4",
"yarn-deduplicate": "^3.1.0"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
}
}