forked from garmeeh/next-seo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.81 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
{
"name": "next-seo",
"version": "4.20.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 || ^10.0.0",
"react": "^16.0.0 || ^17.0.0",
"react-dom": "^16.0.0 || ^17.0.0"
},
"scripts": {
"test": "jest",
"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",
"lint": "eslint src",
"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": "yarn next e2e",
"e2e:build": "yarn next build e2e",
"e2e:start": "yarn next start e2e"
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid",
"trailingComma": "all"
},
"author": {
"name": "Gary Meehan",
"email": "[email protected]"
},
"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": {
"@cypress/schema-tools": "^4.7.1",
"@types/jest": "^26.0.0",
"@types/node": "^14.0.0",
"@types/react": "^17.0.1",
"@types/react-dom": "^17.0.1",
"cypress": "^3.8.3",
"cypress-testing-library": "^3.0.1",
"doctoc": "^1.4.0",
"husky": "4.3.8",
"jest": "25.5.4",
"lint-staged": "10.5.4",
"microbundle": "^0.13.0",
"next": "^10.0.0",
"npm-run-all": "4.1.5",
"prettier": "2.1.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-testing-library": "7.0.0",
"rimraf": "3.0.2",
"ts-jest": "^25.2.0",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"typescript": "^4.2.2"
},
"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}": []
}
}