-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.42 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
{
"name": "tbarlow12-personal-website",
"version": "0.1.0",
"homepage": "https://tbarlow12.github.io/",
"private": true,
"scripts": {
"lint": "npm run lint:markdown && npm run lint:spellcheck",
"lint:fix": "npm run lint:markdown:fix",
"lint:markdown": "markdownlint **/*.md --ignore node_modules --ignore content/blog/drafts",
"lint:markdown:fix": "markdownlint **/*.md --fix --ignore node_modules --ignore content/blog/drafts",
"lint:spellcheck": "mdspell \"**/*.md\" \"!**/node_modules/**/*.md\" \"!**/content/blog/drafts/**/*.md\" --en-us --ignore-numbers --ignore-acronyms --report",
"spell:fix": "mdspell \"**/*.md\" \"!**/node_modules/**/*.md\" \"!**/content/blog/drafts/**/*.md\" --en-us --ignore-numbers --ignore-acronyms",
"prestart": "npm run markdown",
"start": "react-scripts start",
"prebuild": "npm run markdown",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"markdown": "node ./scripts/generateMarkdownJson.js",
"publish": "node ./scripts/publish.js"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"react",
"@typescript-eslint"
],
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.11.1",
"@types/jest": "24.0.18",
"@types/node": "12.7.4",
"@types/react": "16.9.2",
"@types/react-dom": "16.9.0",
"axios": "^0.19.0",
"gray-matter": "^4.0.2",
"markdown-magic": "^1.0.0",
"md5.js": "^1.3.5",
"node-sass": "^4.12.0",
"react": "^16.9.0",
"react-console-emulator": "^3.0.2",
"react-device-detect": "^1.9.9",
"react-dom": "^16.9.0",
"react-markdown": "^4.2.2",
"react-router-dom": "^5.0.1",
"react-scripts": "4.0.1",
"react-syntax-highlighter": "^12.2.1",
"typescript": "3.6.2"
},
"devDependencies": {
"@types/react-router-dom": "^4.3.5",
"@typescript-eslint/eslint-plugin": "^2.3.1",
"@typescript-eslint/parser": "^2.3.1",
"@typescript-eslint/typescript-estree": "^2.3.1",
"eslint-plugin-react-hooks": "^2.0.1",
"gh-pages": "^2.1.1",
"markdown-spellcheck": "^1.3.1",
"markdownlint-cli": "^0.26.0"
}
}