-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
61 lines (61 loc) · 1.95 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
{
"name": "apollo-storybook-decorator",
"version": "0.5.1",
"description": "Add Apollo Client to your Storybook environment",
"main": "lib/index.js",
"author": "Abhi Aiyer",
"repository": {
"type": "git",
"url": "git://github.com/abhiaiyer91/apollo-storybook-decorator.git"
},
"license": "MIT",
"devDependencies": {
"@storybook/cli": "^3.4.2",
"@storybook/react": "^3.4.6",
"@workpop/eslint-config-workpop": "^0.0.9",
"apollo-cache-inmemory": "^1.2.2",
"apollo-client": "^2.3.2",
"apollo-link": "^1.2.2",
"apollo-link-state": "^0.4.1",
"babel-cli": "^6.24.1",
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.26.0",
"eslint": "^4.18.2",
"getstorybook": "^1.7.0",
"graphql": "^0.13.2",
"graphql-tag": "^2.9.2",
"graphql-tools": "^3.0.2",
"lerna": "^2.1.2",
"pre-commit": "^1.2.2",
"prettier": "^1.18.2",
"react": "^16.10.2",
"react-apollo": "^3.1.2",
"react-dom": "^16.10.2",
"standard-version": "^4.2.0"
},
"scripts": {
"bootstrap": "yarn install && lerna bootstrap",
"postbootstrap": "npm run build",
"build": "lerna run -- build",
"test": "lerna run -- test",
"prelint": "npm run lint-fix",
"lint": "lerna run -- lint",
"lint-fix": "prettier --trailing-comma all --single-quote --write \"packages/*/{src,tests,test,benchmark}/**/*.{j,t}s*\"",
"lint-staged": "lint-staged",
"filesize": "lerna run -- filesize && bundlesize",
"type-check": "lerna run -- type-check",
"coverage": "lerna run -- coverage",
"coverage:upload": "codecov",
"danger": "danger run --verbose",
"predeploy": "npm run build",
"deploy": "lerna publish -m \"chore: Publish\" --independent"
},
"pre-commit": [
"lint"
]
}