forked from grafoojs/grafoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.34 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
103
{
"private": true,
"name": "grafoo",
"description": "a graphql client and toolkit",
"repository": "https://github.com/grafoojs/grafoo",
"author": "malbernaz <[email protected]>",
"license": "MIT",
"scripts": {
"bootstrap": "lerna bootstrap",
"test": "lerna run test",
"test:coverage": "lerna run test:coverage && codecov",
"prepare": "node scripts/build.js",
"clean": "rimraf packages/**/dist"
},
"husky": {
"hooks": {
"pre-push": "lerna run test",
"pre-commit": "lint-staged"
}
},
"workspaces": [
"packages/*"
],
"lint-staged": {
"ignore": [
"examples/**/*"
],
"linters": {
"**/*.js": [
"eslint",
"git add"
],
"**/*.{js,ts,tsx,json,graphql,md}": [
"prettier --write",
"git add"
]
}
},
"prettier": {
"printWidth": 100
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:import/errors",
"plugin:import/warnings"
],
"parser": "babel-eslint",
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2017,
"ecmaFeatures": {
"jsx": true
}
},
"plugins": [
"import"
],
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true,
"jest": true
}
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.0.0",
"@babel/register": "^7.0.0",
"@types/graphql": "^14.0.5",
"@types/jest": "^24.0.0",
"@types/node": "^10.12.23",
"@types/react": "^16.3.16",
"babel-eslint": "^10.0.1",
"babel-plugin-jsx-pragmatic": "^1.0.2",
"babel-plugin-tester": "^5.0.0",
"casual": "^1.5.19",
"codecov": "^3.0.2",
"eslint": "^5.13.0",
"eslint-plugin-import": "^2.12.0",
"fetch-mock": "^7.3.0",
"graphql": "^14.0.2",
"graphql-tools": "^4.0.3",
"husky": "^1.2.0",
"jest": "^24.1.0",
"lerna": "^3.2.0",
"lint-staged": "^8.1.3",
"lowdb": "^1.0.0",
"node-fetch": "^2.1.2",
"preact": "^8.3.0",
"preact-render-spy": "^1.3.0",
"prettier": "^1.13.4",
"react": "^16.4.0",
"react-test-renderer": "^16.4.0",
"rimraf": "^2.6.2",
"typescript": "^3.0.1",
"uuid": "^3.2.1"
}
}