-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
79 lines (79 loc) · 2.74 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
{
"name": "giphy-js",
"scripts": {
"lint": "turbo lint",
"test": "turbo test",
"build": "turbo build",
"cy:run": "turbo run cy:run --",
"cy:verify": "turbo run cy:verify",
"cy:info": "turbo run cy:info",
"release": "turbo build && changeset publish",
"test:watch": "turbo run test:watch --stream",
"format": "prettier-eslint \"$(pwd)/**/*.{js,ts,tsx}\" --write --print-width 120 --tab-width 4",
"dependency-cruiser": "depcruise -c .dependency-cruiser.js ./",
"check-licenses": "turbo run g:check-licenses",
"g:check-licenses": "yarn workspaces foreach node $PWD/scripts/license-checker.js"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"prettier-eslint --write --print-width 120 --tab-width 4",
"eslint --rule 'import/no-duplicates: 0' --rule 'import/namespace: 0' --rule 'import/no-unresolved: 0' --rule 'import/named: 0' --rule 'import/default: 0' --rule 'import/no-named-as-default: 0' --rule 'import/no-named-as-default-member: 0'"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "[email protected]:Giphy/giphy-js.git"
},
"private": true,
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/jest": "^29.5.1",
"@types/node": "^20.1.2",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"@yarnpkg/plugin-workspace-tools": "^4.0.0-rc.43",
"dependency-cruiser": "^10.0.7",
"eslint": "^8.40.0",
"eslint-config-standard": "^17.0.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^4.3.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"prettier-eslint-cli": "^7.1.0",
"publint": "^0.1.12",
"ts-jest": "^29.1.0",
"tsup": "^7.0.0",
"turbo": "1.10.11",
"typescript": "^5.0.4"
},
"changelog": {
"labels": {
"bug": "bug",
"refactor": "refactor",
"feature request": "feature",
"build tools & CI": "build tools & continuous integration"
}
},
"volta": {
"node": "16.15.1",
"yarn": "3.5.1"
},
"workspaces": [
"packages/*"
],
"packageManager": "[email protected]"
}