-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
65 lines (65 loc) · 1.7 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
{
"name": "yuque-blog",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"lint": "eslint --ext .ts,.tsx ./pages ./components ./utils --fix",
"format": "prettier --write \"./**/*{.ts,.tsx}\"",
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"dotenv": "^8.2.0",
"highlight.js": "^10.4.1",
"html-react-parser": "^0.13.0",
"isomorphic-unfetch": "^3.0.0",
"moment-timezone": "^0.5.31",
"next": "9.4.0",
"node-fetch": "^2.6.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-highlight": "^0.12.0",
"react-is": "^16.13.1",
"sanitize-html": "^1.24.0",
"styled-components": "^5.1.0"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/moment-timezone": "^0.5.13",
"@types/node": "12",
"@types/node-fetch": "^2.5.7",
"@types/react": "^16.9.35",
"@types/react-highlight": "^0.12.2",
"@types/sanitize-html": "^1.23.0",
"@types/styled-components": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"babel-plugin-styled-components": "^1.10.7",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^6.3.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.15.1",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"prettier": "^2.0.5",
"typescript": "^3.9.2"
},
"lint-staged": {
"./**/*{.ts,.tsx}": [
"npm run format",
"npm run lint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"volta": {
"node": "12.16.3",
"yarn": "1.22.4"
}
}