forked from oscartbeaumont/vite-plugin-relay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.27 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
{
"name": "vite-plugin-relay",
"version": "1.0.7",
"description": "A vite plugin for relay",
"author": {
"name": "Oscar Beaumont",
"email": "oscar@otbeaumont.me"
},
"main": "dist/plugin.js",
"types": "dist/plugin.d.ts",
"files": [
"dist"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/oscartbeaumont/vite-plugin-relay.git"
},
"keywords": [
"graphql",
"relay",
"typescript",
"graphql-relay",
"vite",
"vite-plugin",
"vite-plugin-relay"
],
"scripts": {
"build": "tsc -p .",
"lint": "prettier --check . && eslint src/** example/src/**",
"format": "prettier --write . && eslint src/** example/src/** --fix",
"prepare": "husky install && yarn build"
},
"peerDependencies": {
"vite": ">2.0.0-0"
},
"dependencies": {
"@babel/core": "^7.15.0",
"babel-plugin-relay": "^12.0.0"
},
"devDependencies": {
"@types/babel__core": "^7.1.15",
"@types/node": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"graphql": "^16.0.1",
"husky": "^7.0.1",
"prettier": "^2.3.2",
"typescript": "^4.5.2",
"vite": "^2.6.14"
}
}