-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
50 lines (50 loc) · 1.57 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
{
"name": "root",
"private": true,
"description": "A Gatsby plugin to handle cdn, base64 and self hosted webfonts",
"license": "MIT",
"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 . --report-unused-disable-directives",
"test:unit": "lerna run jest --stream",
"test:all": "yarn test:unit && yarn test:development-runtime && yarn test:production-runtime && yarn test:path-prefix-prod-runtime",
"outdated:all": "yarn outdated",
"upgrade:all": "yarn upgrade-interactive --latest"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"lerna": "^6.1.0",
"prettier": "^2.8.1"
}
}