forked from appannie/ab-testing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.83 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.83 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
{
"name": "root",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@testing-library/react": "^10.0.1",
"@testing-library/react-hooks": "^3.2.1",
"@types/create-hash": "^1.2.2",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.1",
"@types/testing-library__react": "^9.1.3",
"@types/testing-library__react-hooks": "^3.2.0",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-formatter-friendly": "^7.0.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lerna": "^3.20.2",
"lint-staged": "^10.0.8",
"prettier": "^1.19.1",
"react": "^16.13.0",
"react-test-renderer": "^16.13.0",
"ts-jest": "^25.2.1",
"ts-polyfill": "^3.8.2",
"typescript": "^3.8.3"
},
"resolutions": {
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5"
},
"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"
}
}