-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.77 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.77 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
{
"name": "@polywrap/react",
"description": "Polywrap React Integration",
"version": "0.11.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/polywrap/react.git"
},
"main": "build/index.js",
"files": [
"build"
],
"scripts": {
"build": "rimraf ./build && tsc --project tsconfig.build.json",
"lint": "eslint --color -c .eslintrc.js src/",
"lint:fix": "yarn lint -- --fix",
"test": "jest --passWithNoTests --runInBand --verbose --env=./src/__tests__/env/index.ts",
"test:watch": "yarn test --watch",
"publish:npm": "yarn publish --access public --non-interactive --verbose",
"publish:pre:npm": "yarn publish --access public --non-interactive --verbose --tag pre"
},
"dependencies": {
"@polywrap/client-js": "0.12.2",
"react": "16.9.0"
},
"peerDependencies": {
"@polywrap/client-js": "0.12.x",
"react": ">=16.9.x"
},
"devDependencies": {
"@testing-library/react": "11.2.5",
"@testing-library/react-hooks": "5.1.0",
"@types/jest": "26.0.8",
"@types/prettier": "2.6.0",
"@types/react": "16.9.0",
"@types/react-dom": "16.9.0",
"jest": "26.6.3",
"ts-jest": "26.5.4",
"react-dom": "16.9.0",
"jest-environment-jsdom": "^26.0.1",
"rimraf": "3.0.2",
"typescript": "4.9.5",
"@typescript-eslint/eslint-plugin": "4.11.1",
"@typescript-eslint/parser": "4.11.1",
"eslint": "7.16.0",
"eslint-config-prettier": "7.1.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-json": "3.0.0",
"eslint-plugin-prettier": "3.4.0",
"prettier": "2.2.1"
},
"resolutions": {
"@types/react": "16.9.0",
"@types/react-dom": "16.9.0"
},
"gitHead": "7346adaf5adb7e6bbb70d9247583e995650d390a",
"publishConfig": {
"access": "public"
}
}