-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1020 Bytes
/
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
{
"name": "gatsby-plugin-performance-metrics",
"version": "1.0.1",
"description": "A Gatsby plugin to measure First (Contentful) Paint (FP/FCP) and First Input Delay (FID)",
"license": "MIT",
"author": "hello@webappsolutions.de",
"repository": {
"type": "git",
"url": "https://github.com/hupe1980/gatsby-plugin-performance-metrics"
},
"keywords": [
"react",
"gatsby",
"gatsby-plugin",
"performance",
"first-contentful-paint",
"first-paint",
"first-input-delay",
"google-analytics",
"rum"
],
"main": "index.js",
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
"watch": "babel -w src --out-dir . --ignore **/__tests__"
},
"dependencies": {
"first-input-delay": "^0.1.3",
"terser": "^3.17.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"babel-preset-gatsby-package": "^0.1.4",
"cross-env": "^5.2.0"
}
}