forked from prismicio/prismic-gatsby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.77 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
{
"name": "gatsby-plugin-prismic-previews",
"version": "4.2.0",
"description": "Gatsby plugin for integrating client-side Prismic previews support",
"license": "Apache-2.0",
"author": "Prismic <[email protected]> (https://prismic.io)",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"style": "./dist/styles.css",
"files": [
"dist",
"src",
"gatsby-node.js",
"gatsby-browser.js",
"gatsby-ssr.js"
],
"scripts": {
"build": "NODE_ENV=production concurrently -p '[{name}]' -n 'esbuild, tsc' -c 'yellow.dim,blue.dim' 'node ./build.mjs' 'tsc -p ./tsconfig.build.json'",
"build-storybook": "build-storybook",
"clean": "yarn prebuild",
"dev": "NODE_ENV=development concurrently -p '[{name}]' -n 'esbuild, tsc' -c 'yellow.dim,blue.dim' 'node ./build.mjs -w' 'tsc -w --preserveWatchOutput -p ./tsconfig.build.json'",
"format": "prettier --write '{src,docs}/**/*.{ts,tsx,md}'",
"prebuild": "rimraf dist",
"prepare": "yarn build",
"storybook": "start-storybook --quiet -p 6006",
"test": "ava"
},
"homepage": "https://github.com/prismicio/gatsby/tree/main/packages/gatsby-plugin-prismic-previews",
"repository": {
"type": "git",
"url": "ssh://[email protected]/prismicio/gatsby.git"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"prismic"
],
"dependencies": {
"@imgix/gatsby": "^1.6.13",
"@prismicio/client": "6.0.0-alpha.8",
"@prismicio/helpers": "^2.0.0-beta.0",
"@prismicio/types": "^0.1.13",
"@reach/dialog": "^0.16.0",
"camel-case": "^4.1.2",
"clsx": "^1.1.1",
"es-cookie": "^1.3.2",
"fp-ts": "^2.10.5",
"gatsby-node-helpers": "^1.2.1",
"tiny-hashes": "^1.0.1"
},
"peerDependencies": {
"gatsby": "^3.0.0-next.0",
"gatsby-plugin-image": "^1.3.0-next.1",
"gatsby-source-prismic": "^4.0.0-alpha.0",
"react": ">=16.13"
},
"devDependencies": {
"@storybook/addon-postcss": "^2.0.0",
"@storybook/cli": "^6.3.7",
"@storybook/react": "^6.3.7",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.1",
"@themosaad/tailwindcss-capsize": "^1.0.0",
"abort-controller": "^3.0.0",
"browser-env": "^3.3.0",
"cross-fetch": "^3.1.4",
"gatsby-plugin-image": "^1.11.0",
"global-jsdom": "^8.1.0",
"identity-obj-proxy": "^3.0.0",
"jsdom": "^16.7.0",
"node-fetch": "^2.6.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-polymorphic-types": "^2.0.0",
"react-test-renderer": "^17.0.2",
"source-map-explorer": "^2.5.2"
},
"ava": {
"files": [
"./test/**/*.test.{ts,tsx}"
],
"extensions": [
"ts",
"tsx"
],
"require": [
"ts-eager/register"
],
"verbose": true
},
"gitHead": "3d01b6e8d59dd85d83fb0a81e344145fea0159fc"
}