forked from prismicio/prismic-gatsby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.74 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
{
"name": "@prismicio/gatsby",
"private": true,
"engines": {
"node": ">=12.18.4"
},
"scripts": {
"clean": "yarn workspaces run clean",
"test": "yarn workspaces run test",
"build": "yarn workspaces run build",
"publish:canary": "lerna publish --canary",
"publish:alpha": "lerna publish --dist-tag alpha --preid alpha",
"publish:beta": "lerna publish --dist-tag beta --preid beta",
"publish:latest": "lerna publish --dist-tag latest"
},
"workspaces": {
"packages": [
"packages/gatsby-source-prismic",
"packages/gatsby-plugin-prismic-previews",
"packages/*",
"test-site"
],
"nohoist": [
"**/husky",
"**/husky/**"
]
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/sinon": "^10.0.2",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"ava": "^3.15.0",
"concurrently": "^6.2.1",
"esbuild": "^0.12.19",
"eslint": "^7.32.0",
"eslint-plugin-deprecation": "^1.2.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"gatsby": "^3.11.1",
"gatsby-plugin-utils": "^1.11.0",
"husky": "^7.0.1",
"lerna": "^4.0.0",
"msw": "^0.34.0",
"postcss": "^8.3.6",
"postcss-import": "^14.0.2",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"sinon": "^11.1.2",
"tailwindcss": "^2.2.7",
"ts-eager": "^2.0.2",
"tslib": "^2.3.0",
"type-fest": "^2.0.0",
"typescript": "^4.3.5"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"printWidth": 80
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}