-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
102 lines (102 loc) · 2.49 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@vtex/test-tools",
"version": "3.4.3",
"description": "VTEX IO testing tools",
"repository": {
"type": "git",
"url": "https://github.com/vtex/test-tools"
},
"keywords": [
"react",
"vtex",
"io",
"test",
"graphl",
"typescript"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/vtex/test-tools/issues"
},
"homepage": "https://github.com/vtex/test-tools#readme",
"bin": {
"vtex-test-tools": "./bin/vtex-test-tools.js"
},
"files": [
"dist",
"bin",
"scripts",
"react.js",
"react.d.ts",
"cypress.js",
"README.md"
],
"scripts": {
"build": "tsc -d",
"dev": "tsc -w",
"lint": "tsc --noEmit && eslint --ext js,jsx,ts,tsx .",
"cy:open": "cypress open",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json}\"",
"prepublishOnly": "run-s lint build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,tsx,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.json": [
"prettier --write"
]
},
"dependencies": {
"@babel/core": "^7.11.1",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@testing-library/jest-dom": "^5.11.2",
"@testing-library/react": "^10.4.7",
"@testing-library/react-hooks": "^3.4.1",
"@types/jest": "^26.0.8",
"@types/node": "^14.0.27",
"@types/react": "^16.9.44",
"apollo-cache-inmemory": "^1.6.3",
"apollo-client": "^2.6.4",
"babel-jest": "^25.5.1",
"babel-plugin-const-enum": "^1.0.1",
"graphql": "^14.0.0",
"graphql-tag": "^2.11.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.0.0",
"jest-transform-graphql": "^2.1.0",
"react": "^16.9.0",
"react-apollo": "^3.1.3",
"react-dom": "^16.9.0",
"react-test-renderer": "^16.13.1",
"typescript": "^3.9.7"
},
"devDependencies": {
"@apollo/react-testing": "^3.1.3",
"@babel/runtime": "^7.7.4",
"@vtex/prettier-config": "^0.3.1",
"@vtex/tsconfig": "^0.5.0",
"cypress": "^6.4.0",
"eslint": "^7.6.0",
"eslint-config-vtex-react": "^6.7.4",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"react-intl": "^3.9.2"
},
"peerDependencies": {
"@apollo/react-testing": "^3.1.3",
"react-intl": "^3.9.2"
}
}