This repository has been archived by the owner on May 31, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
102 lines (102 loc) · 2.59 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
{
"name": "nextein",
"version": "4.3.0",
"description": "A static site and blog generator based on Next.js",
"repository": "https://github.com/elmasse/nextein",
"bugs": "https://github.com/elmasse/nextein/issues",
"homepage": "https://nextein.elmasse.io",
"scripts": {
"clean": "rimraf -rf ./dist",
"compile": "babel ./src -d dist",
"build": "npm run lint & npm run compile",
"lint": "standard",
"prepublishOnly": "npm run release",
"release": "npm run clean && npm run build",
"test": "jest",
"__version": "chan release ${npm_package_version} && git add ."
},
"files": [
"dist",
"create.js",
"config.js",
"content.js",
"fetcher.js",
"filters.js",
"index.js",
"sorters.js"
],
"dependencies": {
"@babel/runtime": "^7.20.1",
"chokidar": "^3.5.3",
"frontmatter": "^0.0.3",
"mime": "^3.0.0",
"path-to-regexp": "^6.2.1",
"rehype-raw": "^5.0.0",
"rehype-react": "^6.0.0",
"rehype-stringify": "^8.0.0",
"remark-parse": "^9.0.0",
"remark-rehype": "^8.0.0",
"unified": "^9.0.0",
"unist-util-remove-position": "^3.0.0",
"unist-util-select": "^3.0.0"
},
"peerDependencies": {
"next": "^11.0.0 || ^12.0.0 || ^13.0.0",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@babel/cli": "7.19.3",
"@babel/core": "^7.20.2",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-class-properties": "^7.18.0",
"@babel/plugin-proposal-object-rest-spread": "^7.20.0",
"@babel/plugin-transform-runtime": "^7.19.0",
"@babel/preset-env": "^7.20.0",
"@babel/preset-react": "^7.18.0",
"@babel/runtime": "^7.20.0",
"@geut/chan": "^3.2.9",
"babel-jest": "^29.3.0",
"eslint": "^8.27.0",
"eslint-config-standard": "^17.0.0",
"hastscript": "^7.1.0",
"jest": "^29.3.0",
"next": "^13.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"rimraf": "^3.0.2",
"standard": "^17.0.0",
"webpack": "^5.75.0"
},
"standard": {
"parser": "@babel/eslint-parser",
"ignore": [
"test/**",
"**/node_modules/**"
]
},
"jest": {
"testEnvironment": "node",
"roots": [
"test/"
],
"testRegex": "(/^test/.*|\\.(test|spec))\\.(js)$"
},
"keywords": [
"blog",
"blog-engine",
"static",
"website",
"next.js",
"react",
"markdown",
"ssr"
],
"author": {
"name": "Maximiliano Fierro",
"email": "elmasse@gmail.com"
},
"license": "ISC",
"browserslist": "> 2%, not dead"
}