-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.96 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
{
"name": "@helloncanella/useappstate",
"version": "0.3.6",
"description": "Manage whole app state with the ease of an useState",
"main": "lib/useAppState.js",
"repository": {
"url": "https://github.com/helloncanella/useAppState"
},
"scripts": {
"test": "jest --watch",
"clean": "rimraf lib dist",
"build:commonjs": "babel src --out-dir lib",
"build:umd": "cross-env FILE_NAME=useAppState webpack",
"build:umd:min": "cross-env NODE_ENV=production npm run build:umd",
"build": "npm run clean && npm run build:commonjs && npm run build:umd && npm run build:umd:min",
"lint": "eslint src --ext .js,.jsx"
},
"author": "@helloncanella",
"license": "ISC",
"keywords": [
"state",
"apollo",
"apollo-client",
"graphql"
],
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/preset-react": "^7.0.0",
"@typescript-eslint/eslint-plugin": "1.x",
"@typescript-eslint/parser": "1.x",
"babel-eslint": "10.x",
"babel-jest": "^24.9.0",
"cross-env": "^5.2.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "6.x",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-react-app": "^5.0.1",
"eslint-plugin-flowtype": "3.x",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "1.x",
"jest-bamboo-formatter": "^1.0.1",
"rimraf": "^3.0.0",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.7",
"jest": "^24.9.0",
"waait": "^1.0.5",
"enzyme": "^3.10.0",
"@apollo/react-testing": "^3.1.0"
},
"peerDependencies": {
"@apollo/react-hooks": "^3.1.0",
"graphql": "^14.5.4",
"graphql-tag": "^2.10.1",
"react": "^16.9.0",
"apollo-cache": "^1.3.2",
"apollo-cache-inmemory": "^1.6.3",
"apollo-client": "^2.6.4"
},
"dependencies": {
"lodash": "^4.17.15"
}
}