-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.1 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
{
"name": "react-meetup-ab-testing",
"description": "Introduction to A/B testing with React and React Native",
"version": "1.0.0",
"license": "MIT",
"packageManager": "[email protected]",
"author": {
"name": "Philippe Tessier",
"email": "[email protected]",
"url": "https://github.com/ptessier"
},
"repository": {
"type": "git",
"url": "https://github.com/maintainx/react-meetup-ab-testing"
},
"engines": {
"node": ">=20.0.0"
},
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"lint:fix": "yarn lint --fix",
"lint:debug": "DEBUG=eslint:cli-engine yarn lint"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"prettier": "^3.1.1",
"prettier-plugin-organize-imports": "^3.2.4",
"typescript": "^5.3.3"
}
}