-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
67 lines (67 loc) · 1.9 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
{
"name": "root",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/preset-typescript": "^7.16.7",
"@testing-library/react": "^12.1.4",
"@testing-library/react-hooks": "^7.0.2",
"@types/create-hash": "^1.2.2",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@types/testing-library__react": "^10.2.0",
"@types/testing-library__react-hooks": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"conventional-changelog-conventionalcommits": "^4.6.3",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-formatter-friendly": "^7.0.0",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.3",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lerna": "^4.0.0",
"lint-staged": "^12.3.5",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-test-renderer": "^17.0.2",
"typescript": "^4.6.2"
},
"resolutions": {
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.2"
},
"lint-staged": {
"*.js": [
"eslint --fix"
],
"*.json": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"scripts": {
"lint": "eslint \"packages/**/{src,__tests__}/**/*.{ts,tsx}\" -f eslint-formatter-friendly",
"test": "jest",
"build": "lerna run build",
"prepublishOnly": "lerna run build"
},
"repository": "https://github.com/appannie/ab-testing.git",
"dependencies": {
"@appannie/ab-testing": "link:packages/ab-testing",
"@appannie/ab-testing-hash-object": "link:packages/ab-testing-hash-object",
"@appannie/react-ab-testing": "link:packages/react-ab-testing",
"py-ab-testing": "link:packages/py-ab-testing",
"ts-jest": "^27.1.3"
}
}