-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
90 lines (90 loc) · 2.62 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
{
"name": "jotai-urql",
"description": "👻🦅",
"version": "0.7.2",
"author": "Daishi Kato",
"repository": {
"type": "git",
"url": "https://github.com/jotaijs/jotai-urql.git"
},
"source": "./src/index.ts",
"main": "./dist/index.umd.js",
"module": "./dist/index.modern.js",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"module": "./dist/index.modern.js",
"import": "./dist/index.modern.mjs",
"default": "./dist/index.umd.js"
}
},
"sideEffects": false,
"files": [
"src",
"dist"
],
"scripts": {
"compile": "microbundle build -f modern,umd --tsconfig tsconfig.build.json --globals react=React",
"postcompile": "cp dist/index.modern.mjs dist/index.modern.js && cp dist/index.modern.mjs.map dist/index.modern.js.map",
"test": "run-s eslint tsc-test vitest playwright",
"eslint": "eslint --cache --ext .js,.ts,.tsx .",
"vitest": "vitest --no-watch",
"tsc-test": "tsc --project . --noEmit",
"playwright": "playwright test",
"playwright:ui": "playwright test --ui",
"examples:01_typescript": "DIR=01_typescript EXT=tsx webpack serve"
},
"keywords": [
"jotai",
"react",
"graphql",
"urql"
],
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.32.2",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@types/node-fetch": "^2.6.3",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"@urql/core": "^4.0.4",
"@urql/exchange-graphcache": "^6.0.1",
"@vitejs/plugin-react-swc": "^3.3.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-custom-alias": "^1.3.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"graphql": "^16.6.0",
"html-webpack-plugin": "^5.5.0",
"jotai": "^2.0.4",
"jsdom": "^21.1.1",
"microbundle": "^0.15.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.10.0",
"ts-loader": "^9.4.2",
"typescript": "^5.0.4",
"vite": "^4.2.1",
"vitest": "~0.30.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"wonka": "^6.3.1"
},
"peerDependencies": {
"@urql/core": "*",
"jotai": ">=1.11.0"
}
}