Skip to content

Commit a4f741b

Browse files
committed
v1.3.7
1 parent 3b277b7 commit a4f741b

File tree

1 file changed

+30
-20
lines changed

1 file changed

+30
-20
lines changed

packages/graphql-playground/package.json

Lines changed: 30 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
{
22
"name": "graphql-playground",
3-
"version": "1.3.7-alpha.2",
3+
"version": "1.3.7",
44
"main": "./lib/lib.js",
55
"typings": "./lib/lib.d.ts",
6-
"description":
7-
"GraphQL IDE for better development workflows (GraphQL Subscriptions, interactive docs & collaboration).",
6+
"description": "GraphQL IDE for better development workflows (GraphQL Subscriptions, interactive docs & collaboration).",
87
"contributors": [
98
"Tim Suchanek <[email protected]>",
109
"Johannes Schickling <[email protected]>"
@@ -18,21 +17,22 @@
1817
"start": "node scripts/start.js",
1918
"prepublishOnly": "yarn build",
2019
"copy-styles": "cat src/styles/*.css > playground.css",
21-
"build":
22-
"rimraf dist build dist && yarn build-app && yarn build-package && yarn copy-styles",
20+
"build": "rimraf dist build dist && yarn build-app && yarn build-package && yarn copy-styles",
2321
"tsc": "tsc -p tsconfig.build.json",
24-
"build-package":
25-
"rimraf lib build/dist && npm run tsc && babel lib -d lib && cp -r ./src/assets/ ./lib/assets/ && cd lib && rimraf *.jsx;",
22+
"build-package": "rimraf lib build/dist && npm run tsc && babel lib -d lib && cp -r ./src/assets/ ./lib/assets/ && cd lib && rimraf *.jsx;",
2623
"build-app": "node scripts/build.js",
2724
"test": "node scripts/test.js --env=jsdom",
2825
"bump": "npm version patch --no-git-tag-version && git add package.json",
2926
"graphql-faker": "graphql-faker ./tests/schema.faker.graphql",
3027
"lint": "tslint \"src/**/*.ts{,x}\"",
3128
"precommit": "lint-staged",
32-
"prettier":
33-
"prettier --single-quote --no-semi --trailing-comma all --write *.{ts,tsx} 'src/**/*.{ts,tsx}'"
29+
"prettier": "prettier --single-quote --no-semi --trailing-comma all --write *.{ts,tsx} 'src/**/*.{ts,tsx}'"
3430
},
35-
"files": ["build", "lib", "playground.css"],
31+
"files": [
32+
"build",
33+
"lib",
34+
"playground.css"
35+
],
3636
"devDependencies": {
3737
"@types/deasync": "^0.1.0",
3838
"@types/express": "^4.0.36",
@@ -75,8 +75,7 @@
7575
"postcss-cssnext": "^2.9.0",
7676
"postcss-flexbugs-fixes": "^3.2.0",
7777
"postcss-import": "^9.1.0",
78-
"postcss-inherit":
79-
"git+https://github.com/timsuchanek/postcss-inherit#build3",
78+
"postcss-inherit": "git+https://github.com/timsuchanek/postcss-inherit#build3",
8079
"postcss-inject": "^1.0.1",
8180
"postcss-loader": "1.0.0",
8281
"postcss-nested": "^1.0.0",
@@ -106,7 +105,9 @@
106105
"why-did-you-update": "^0.0.8"
107106
},
108107
"babel": {
109-
"plugins": ["styled-jsx-postcss/babel"]
108+
"plugins": [
109+
"styled-jsx-postcss/babel"
110+
]
110111
},
111112
"dependencies": {
112113
"calculate-size": "^1.1.1",
@@ -119,11 +120,11 @@
119120
"graphql": "^0.10.5",
120121
"isomorphic-fetch": "^2.2.1",
121122
"js-yaml": "^3.10.0",
122-
"polished": "^1.9.0",
123123
"json-stable-stringify": "^1.0.1",
124124
"keycode": "^2.1.9",
125125
"lodash": "^4.17.4",
126126
"lodash.debounce": "^4.0.8",
127+
"polished": "^1.9.0",
127128
"postcss-modules": "^0.6.4",
128129
"react": "^16.0.0",
129130
"react-addons-shallow-compare": "^15.6.0",
@@ -142,8 +143,7 @@
142143
"rxjs": "^5.0.3",
143144
"seamless-immutable": "^7.0.1",
144145
"styled-components": "^2.2.3",
145-
"styled-jsx-postcss":
146-
"git+https://github.com/timsuchanek/styled-jsx-postcss#build3",
146+
"styled-jsx-postcss": "git+https://github.com/timsuchanek/styled-jsx-postcss#build3",
147147
"styled-theming": "^2.2.0",
148148
"subscriptions-transport-ws": "^0.8.1"
149149
},
@@ -156,8 +156,12 @@
156156
"gitDir": "../../"
157157
},
158158
"jest": {
159-
"collectCoverageFrom": ["src/**/*.{ts,tsx}"],
160-
"setupFiles": ["<rootDir>/config/polyfills.js"],
159+
"collectCoverageFrom": [
160+
"src/**/*.{ts,tsx}"
161+
],
162+
"setupFiles": [
163+
"<rootDir>/config/polyfills.js"
164+
],
161165
"testPathIgnorePatterns": [
162166
"<rootDir>[/\\\\](build|docs|node_modules)[/\\\\]"
163167
],
@@ -168,11 +172,17 @@
168172
"^.+\\.tsx?$": "<rootDir>/config/jest/typescriptTransform.js",
169173
"^(?!.*\\.(css|json)$)": "<rootDir>/config/jest/fileTransform.js"
170174
},
171-
"transformIgnorePatterns": ["[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"],
175+
"transformIgnorePatterns": [
176+
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
177+
],
172178
"moduleNameMapper": {
173179
"^react-native$": "react-native-web"
174180
},
175-
"moduleFileExtensions": ["ts", "tsx", "js"],
181+
"moduleFileExtensions": [
182+
"ts",
183+
"tsx",
184+
"js"
185+
],
176186
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$"
177187
}
178188
}

0 commit comments

Comments
 (0)