-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 1.98 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
{
"name": "some-cool-things-with-you",
"version": "0.1.0",
"private": true,
"dependencies": {
"@types/highlight.js": "^10.1.0",
"@types/marked": "^2.0.2",
"@types/ouibounce": "^0.0.0",
"@types/react": "^17.0.5",
"@types/react-dom": "^17.0.3",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"animate.css": "^4.1.1",
"axios": "^0.21.1",
"babel-eslint": "^10.1.0",
"cheerio": "^1.0.0-rc.6",
"cra-template-typescript": "1.1.2",
"dayjs": "^1.10.4",
"download": "^8.0.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"fs-extra": "^9.1.0",
"gh-pages": "^3.1.0",
"gitalk": "^1.7.2",
"highlight.js": "^10.7.2",
"husky": "^6.0.0",
"iconv-lite": "^0.6.2",
"lint-staged": "^11.0.0",
"marked": "^2.0.3",
"ouibounce": "^0.0.12",
"prettier": "^2.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"request": "^2.88.2",
"superagent": "^6.1.0",
"typescript": "^4.2.4",
"web-vitals": "^1.1.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"prettier": "prettier --write ./src",
"spider": "node ./source/get-markdown.js",
"predeploy": "yarn build",
"deploy": "gh-pages -d docs"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn run prettier",
"git add ."
]
},
"homepage": "https://ok3-8.github.io/some-cool-things-with-you/",
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}