forked from taboola/gatsby-plugin-webfonts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.37 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
{
"name": "root",
"private": true,
"description": "A Gatsby plugin to handle cdn, base64 and self hosted webfonts",
"license": "MIT",
"author": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/hupe1980/gatsby-plugin-webfonts"
},
"keywords": [
"gatsby-plugin",
"gatsby",
"plugin",
"web",
"font",
"loader",
"google",
"webfont",
"webfontloader"
],
"workspaces": [
"e2e-tests/*",
"gatsby-plugin-webfonts"
],
"scripts": {
"test:development-runtime": "yarn prepare && yarn workspace development-runtime test",
"test:production-runtime": "yarn prepare && yarn workspace production-runtime test",
"test:path-prefix-prod-runtime": "yarn prepare && yarn workspace path-prefix-prod-runtime test",
"prepare": "lerna run prepare",
"lint": "eslint . --cache --report-unused-disable-directives",
"lint:ci": "eslint . --report-unused-disable-directives",
"lint:fix": "eslint . --cache --fix",
"test:unit": "lerna run jest --stream"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^5.0.0",
"eslint-config-react-app": "^4.0.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "^1.6.0",
"lerna": "^3.15.0",
"prettier": "^1.18.2"
}
}