forked from nicolaslopezj/react-apollo-decorators
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.71 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
{
"name": "@orionx-dev/react-apollo-decorators",
"version": "2.1.6",
"description": "Better decorators for Apollo and React",
"author": "Nicolás López <[email protected]> & Joadr",
"license": "MIT",
"main": "./lib",
"scripts": {
"build": "babel ./src --out-dir ./lib",
"prepublish": "npm run test && npm run build",
"test": "exit 0",
"lint": "standard \"src/**/*.js\"",
"watch": "node watch.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/orionx-dev/react-apollo-decorators.git"
},
"keywords": [
"react",
"apollo",
"decorators",
"graphql"
],
"devDependencies": {
"@apollo/client": "^3.7.3",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"colors": "^1.3.2",
"eslint": "^5.7.0",
"eslint-config-orionsoft": "^1.2.8",
"react": "^18.0.0",
"standard": "^12.0.1"
},
"dependencies": {
"autobind-decorator": "^2.4.0",
"graphql-tag": "^2.12.6",
"lodash": "^4.17.11",
"prop-types": "^15.6.2"
},
"peerDependencies": {
"@apollo/client": "^3.7.3",
"react": ">=16",
"react-router-dom": "^6.0.0"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/lib"
]
},
"standard": {
"globals": [
"it",
"xit",
"expect",
"test",
"jest"
],
"parser": "babel-eslint"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/orionx-dev"
}
}