-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.92 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
{
"name": "nimblog",
"version": "0.0.6",
"description": "Build static blog within several lines of HTML and Markdown.",
"source": "src/index.html",
"main": "dist/main.js",
"module": "dist/module.js",
"types": "dist/types.d.ts",
"context": "browser",
"outputFormat": "global",
"scripts": {
"dev": "parcel",
"build": "parcel build",
"lint": "eslint --fix src && prettier --write src"
},
"targets": {
"production": {
"source": "src/index.html",
"distDir": "dist/production",
"outputFormat": "global",
"context": "browser",
"engines": {
"browserslist": "> 0.5%, not dead, last 2 versions"
}
}
},
"keywords": [
"blog",
"script",
"markdown"
],
"author": "Chell",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@parcel/packager-ts": "^2.5.0",
"@parcel/transformer-sass": "^2.5.0",
"@parcel/transformer-typescript-types": "^2.5.0",
"@types/react-dom": "^18.0.4",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"parcel": "^2.5.0",
"parcel-reporter-static-files-copy": "^1.3.4",
"prettier": "2.6.2",
"process": "^0.11.10",
"typescript": "^4.6.4"
},
"dependencies": {
"@swc/helpers": "^0.3.13",
"heti": "^0.9.2",
"html-react-parser": "^1.4.12",
"parcel-namer-hashless": "^1.0.3",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-router-dom": "6",
"regenerator-runtime": "^0.13.9",
"rehype-stringify": "^9.0.3",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"unified": "^10.1.2"
}
}