-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
114 lines (114 loc) · 3.08 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
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "nofwl",
"private": true,
"description": "No free working life",
"version": "1.0.0",
"author": "lencx <cxin1314@gmail.com>",
"license": "MIT",
"scripts": {
"new": "node ./bin/new",
"build": "gatsby build",
"develop": "gatsby develop -H 0.0.0.0 -p 6300",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"type-check": "tsc",
"lint": "eslint --ignore-path .gitignore . --ext ts --ext tsx --ext js --ext jsx",
"lint:fix": "yarn lint --fix",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"dependencies": {
"@hot-loader/react-dom": "^17.0.1",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"classnames": "^2.2.6",
"copy-to-clipboard": "^3.3.1",
"create-react-class": "^15.7.0",
"dayjs": "^1.9.7",
"gatsby": "^2.26.1",
"gatsby-image": "^2.5.0",
"gatsby-plugin-catch-links": "^2.7.0",
"gatsby-plugin-feed-mdx": "^1.0.1",
"gatsby-plugin-google-analytics": "^2.8.0",
"gatsby-plugin-manifest": "^2.6.1",
"gatsby-plugin-mdx": "^1.7.0",
"gatsby-plugin-offline": "^3.4.0",
"gatsby-plugin-react-helmet": "^3.4.0",
"gatsby-plugin-sass": "^2.8.0",
"gatsby-plugin-sharp": "^2.8.0",
"gatsby-plugin-typescript": "^2.9.0",
"gatsby-remark-copy-linked-files": "^2.7.0",
"gatsby-remark-images": "^3.8.0",
"gatsby-remark-katex": "^3.7.0",
"gatsby-remark-prismjs": "^3.10.0",
"gatsby-remark-responsive-iframe": "^2.8.0",
"gatsby-source-filesystem": "^2.5.0",
"gatsby-transformer-sharp": "^2.6.0",
"github-slugger": "^1.3.0",
"joi": "^17.3.0",
"katex": "^0.10.0",
"lost": "^8.3.1",
"postcss-pxtorem": "^5.1.1",
"prismjs": "^1.22.0",
"qrcode": "^1.4.4",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^6.1.0",
"react-toastify": "^5.5.0",
"remark-math": "^2.0.1",
"remark-slug": "^6.0.0"
},
"devDependencies": {
"@types/classnames": "^2.2.11",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.21.5",
"fuzzy": "^0.1.3",
"genfile": "^0.1.0",
"husky": "^5.0.6",
"inquirer-autocomplete-prompt": "^1.3.0",
"lint-staged": "^10.5.3",
"node-sass": "^4.9.0",
"prettier": "^2.2.1",
"stylelint": "^13.8.0",
"stylelint-config-standard": "^20.0.0",
"typescript": "^4.1.3"
},
"keywords": [
"gatsby",
"blog",
"post",
"nofwl"
],
"husky": {
"hooks": {
"pre-commit": [
"yarn type-check && lint-staged"
]
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"yarn lint:fix",
"git add"
],
"*.{css,scss}": [
"prettier --write",
"stylelint --syntax=scss --fix",
"git add"
],
"{*.{json,md}}": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/lencx/nofwl.git"
},
"bugs": {
"url": "https://github.com/lencx/nofwl/issues"
}
}