forked from prismicio/prismic-gatsby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.24 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "gatsby-source-prismic",
"version": "3.2.1",
"description": "Gatsby source plugin for building websites using prismic.io as a data source",
"license": "MIT",
"main": "dist/gatsby-source-prismic.js",
"module": "dist/gatsby-source-prismic.modern.js",
"typings": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist",
"src",
"gatsby-node.js",
"gatsby-browser.js",
"gatsby-ssr.js",
"fragments.js"
],
"scripts": {
"clean": "rimraf ./dist",
"start": "yarn clean && microbundle watch src/index.ts src/gatsby-node.ts src/gatsby-browser.ts src/gatsby-ssr.ts -o dist -f modern,cjs --jsx React.createElement",
"build": "yarn clean && microbundle build src/index.ts src/gatsby-node.ts src/gatsby-browser.ts src/gatsby-ssr.ts -o dist -f modern,cjs --jsx React.createElement",
"format": "prettier --write '{src,docs}/**/*.{ts,tsx,md}'",
"test": "jest",
"prepare": "yarn build",
"release": "standard-version"
},
"homepage": "https://github.com/angeloashmore/gatsby-source-prismic",
"repository": {
"type": "git",
"url": "https://github.com/angeloashmore/gatsby-source-prismic.git"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-source-plugin",
"prismic"
],
"dependencies": {
"camel-case": "^4.1.1",
"es-cookie": "^1.3.2",
"gatsby-plugin-imgix": "^0.8.1",
"gatsby-source-filesystem": "^2.3.23",
"lodash.isplainobject": "^4.0.6",
"lodash.omit": "^4.5.0",
"lodash.pick": "^4.4.0",
"md5": "^2.2.1",
"pascal-case": "^3.1.1",
"prismic-dom": "^2.2.3",
"prismic-javascript": "^2.7.1",
"superstruct": "^0.10.12",
"uuid": "^8.2.0"
},
"devDependencies": {
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.10.4",
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@testing-library/jest-dom": "^5.11.1",
"@testing-library/react": "^10.4.7",
"@testing-library/react-hooks": "^3.4.1",
"@types/jest": "^26.0.7",
"@types/lodash.isplainobject": "^4.0.6",
"@types/lodash.omit": "^4.5.6",
"@types/lodash.pick": "^4.4.6",
"@types/md5": "^2.2.0",
"@types/prismic-dom": "^2.1.1",
"@types/uuid": "^8.0.0",
"cross-env": "^7.0.2",
"gatsby": "^2.24.11",
"gatsby-image": "^2.4.13",
"husky": "^4.2.5",
"jest": "^26.1.0",
"microbundle": "^0.12.3",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.1",
"rimraf": "^3.0.2",
"standard-version": "^8.0.2",
"ts-jest": "^26.1.3",
"tslib": "^2.0.0",
"typescript": "^3.9.7"
},
"peerDependencies": {
"gatsby": ">=2.3",
"react": ">=16.8"
},
"browserslist": ">1%, not ie 11, not op_mini all",
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"proseWrap": "always",
"printWidth": 80
},
"babel": {
"plugins": [
"@babel/plugin-proposal-optional-chaining",
"@babel/plugin-proposal-nullish-coalescing-operator"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}