forked from prismicio/prismic-gatsby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.63 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
{
"name": "gatsby-source-prismic",
"version": "3.0.2",
"description": "Gatsby source plugin for building websites using prismic.io as a data source",
"license": "MIT",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"typings": "dist/src/index.d.ts",
"sideEffects": false,
"files": [
"dist",
"gatsby-node.js",
"gatsby-browser.js",
"fragments.js"
],
"scripts": {
"clean": "rimraf ./dist",
"build": "cross-env NODE_ENV=production npm run clean && rollup -c",
"format": "prettier --write '{{src,docs}/**/*.{ts,tsx,md}}'",
"prepare": "npm run build",
"release": "standard-version",
"test": "jest"
},
"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": {
"camelcase": "^5.3.1",
"es-cookie": "^1.3.2",
"fs-extra": "^9.0.0",
"gatsby-source-filesystem": "^2.2.2",
"lodash.isplainobject": "^4.0.6",
"lodash.omit": "^4.5.0",
"lodash.pick": "^4.4.0",
"md5": "^2.2.1",
"pascalcase": "^1.0.0",
"prismic-dom": "^2.1.0",
"prismic-javascript": "^2.7.0",
"superstruct": "^0.8.3",
"ts-imgix": "^0.0.10",
"uuid": "^7.0.3"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@rollup/plugin-json": "^4.0.2",
"@testing-library/react-hooks": "^3.2.1",
"@types/fs-extra": "^8.1.0",
"@types/jest": "^25.2.1",
"@types/lodash.isplainobject": "^4.0.6",
"@types/lodash.omit": "^4.5.6",
"@types/lodash.pick": "^4.4.6",
"@types/md5": "^2.1.33",
"@types/prismic-dom": "^2.1.1",
"@types/uuid": "^7.0.2",
"cross-env": "^7.0.2",
"gatsby": "^2.20.12",
"husky": "^4.2.3",
"jest": "^25.2.7",
"prettier": "^2.0.3",
"react": "^16.13.1",
"react-test-renderer": "^16.13.1",
"rimraf": "^3.0.2",
"rollup": "^2.3.3",
"rollup-plugin-typescript2": "^0.27.0",
"standard-version": "^7.1.0",
"ts-jest": "^25.3.1",
"tslib": "^1.11.1",
"typescript": "^3.8.3"
},
"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
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}