-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.17 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.17 KB
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
{
"name": "@hipshot/react-simple-graphql",
"version": "2.1.1",
"description": "A simple GraphQL client for React",
"main": "lib/cjs/index.js",
"module": "lib/es/index.js",
"scripts": {
"build": "npm-run-all -p build:*",
"build:individual":
"cross-env BABEL_ENV=cjs babel src/components --out-dir .",
"build:cjs": "cross-env BABEL_ENV=cjs babel src --out-dir lib/cjs",
"build:es": "cross-env BABEL_ENV=production babel src --out-dir lib/es",
"clean": "rimraf lib *.js",
"precommit": "lint-staged",
"test": "jest --notify",
"test:watch": "jest --notify --watch",
"storybook": "cross-env BABEL_ENV=test start-storybook -p 9003",
"build-storybook": "cross-env BABEL_ENV=test build-storybook",
"prepublishOnly": "npm run build"
},
"lint-staged": {
"*.js": ["prettier --write", "git add"],
"*.json": ["prettier --parser json --write", "git add"],
"*.css": ["prettier --parser postcss --write", "git add"],
"*.graphql": ["prettier --parser graphql --write", "git add"]
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@storybook/addon-actions": "^3.2.6",
"@storybook/addon-links": "^3.2.6",
"@storybook/react": "^3.2.8",
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-react-app": "^3.0.2",
"babel-preset-stage-2": "^6.24.1",
"cross-env": "^5.0.5",
"dotenv": "^4.0.0",
"env-cmd": "^5.1.0",
"eslint": "^4.5.0",
"eslint-config-react-app": "^2.0.0",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-prettier": "^2.2.0",
"eslint-plugin-react": "^7.3.0",
"husky": "^0.14.3",
"jest": "^20.0.4",
"lint-staged": "^4.0.4",
"npm-run-all": "^4.1.1",
"prettier": "^1.6.1",
"rimraf": "^2.6.1"
},
"dependencies": {
"apollo-fetch": "^0.6.0",
"deep-equal": "^1.0.1",
"prop-types": "^15.5.10"
},
"peerDependencies": {
"react": ">15.0",
"react-dom": ">15.0"
}
}