forked from garmeeh/next-seo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 2.96 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "next-seo",
"version": "6.0.0",
"description": "SEO plugin for Next.js projects",
"source": "src/index.tsx",
"main": "lib/next-seo.js",
"module": "lib/next-seo.module.js",
"unpkg": "lib/next-seo.umd.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"peerDependencies": {
"next": "^8.1.1-canary.54 || >=9.0.0",
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
},
"scripts": {
"test": "jest",
"test:coverage": "jest --verbose --coverage",
"test:watch": "jest --watch",
"pretest:e2e:ci": "yarn e2e:build",
"test:e2e": "npm-run-all --parallel e2e:dev cy:open",
"test:e2e:ci": "npm-run-all --parallel --race e2e:start cy:run",
"prepublishOnly": "yarn build",
"prebuild": "rimraf ./lib",
"format": "prettier",
"table-of-contents": "doctoc README.md",
"type-check": "tsc --noEmit",
"type-check:watch": "yarn type-check -- --watch",
"build": "yarn build:ts",
"build:watch": "microbundle watch --no-sourcemap --no-compress --jsx React.createElement",
"build:ts": "microbundle --no-sourcemap --no-compress --jsx React.createElement",
"build:test": "npm-run-all --sequential build e2e:build",
"cy:open": "cypress open",
"cy:run": "cypress run",
"e2e:dev": "next e2e",
"e2e:devApp": "next e2eWithApp",
"e2e:build": "next build e2e",
"e2e:start": "next start e2e"
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid",
"trailingComma": "all"
},
"author": {
"name": "Gary Meehan",
"email": "garymeehan@outlook.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/garmeeh/next-seo.git"
},
"keywords": [
"next.js",
"seo",
"react",
"node",
"ssr"
],
"bugs": {
"url": "https://github.com/garmeeh/next-seo/issues"
},
"homepage": "https://github.com/garmeeh/next-seo#readme",
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@cypress/schema-tools": "^4.7.9",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.0",
"@types/node": "^18.11.7",
"@types/react": "^18.0.31",
"@types/react-dom": "^18.0.11",
"babel-jest": "^29.5.0",
"cypress": "^12.9.0",
"cypress-testing-library": "^4.0.0",
"doctoc": "^2.1.0",
"husky": "4.3.8",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "11.1.1",
"microbundle": "^0.14.2",
"next": "^13.0.0",
"npm-run-all": "4.1.5",
"prettier": "2.8.7",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"rimraf": "4.4.1",
"typescript": "^5.0.3"
},
"husky": {
"hooks": {
"pre-commit": "yarn table-of-contents && git add README.md && lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,json,css,md,ts,tsx}": [
"prettier --write",
"git add"
],
"*.{ts,tsx}": []
}
}