-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.3 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.3 KB
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": "webperf-snippets",
"private": true,
"version": "1.2.0",
"description": "Web Performance Snippets",
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"prebuild": "rm -rf .next",
"check:consistency": "node scripts/check-consistency.js",
"generate-skills": "node scripts/generate-skills.js",
"generate-skills:check": "node scripts/generate-skills.js && git diff --exit-code -- skills dist",
"install-skills": "node scripts/install-skills.js",
"install-global": "node scripts/install-global.js",
"install-from-release": "node scripts/install-from-release.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"validate": "npm run lint && npm run build",
"test": "echo \"No tests configured\""
},
"keywords": [
"webperf",
"performance",
"perftools",
"snippets"
],
"author": "Joan Leon | @nucliweb",
"license": "MIT",
"dependencies": {
"next": "^13.4.19",
"next-cloudinary": "^4.18.0",
"next-sitemap": "^4.2.3",
"nextra": "^2.11.0",
"nextra-theme-docs": "^2.11.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"eslint": "^10.0.2",
"terser": "^5.36.0",
"vercel": "^32.4.1"
},
"overrides": {
"next-mdx-remote": "^6.0.0"
}
}