-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 2.03 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
{
"name": "usubeni-fantasy",
"description": "Gatsby Blog Template",
"version": "1.0.0",
"author": "SSShooter <ssshooterx@gmail.com>",
"dependencies": {
"axios": "1.2.2",
"fast-exif": "^1.0.1",
"gatsby": "^5.12.8",
"gatsby-plugin-feed": "^5.4.0",
"gatsby-plugin-google-gtag": "^5.4.0",
"gatsby-plugin-sass": "^6.13.0",
"gatsby-plugin-sitemap": "^6.4.0",
"gatsby-remark-autolink-headers": "^6.4.0",
"gatsby-remark-copy-linked-files": "^6.4.0",
"gatsby-remark-images": "^7.4.0",
"gatsby-remark-katex": "^7.4.0",
"gatsby-remark-prismjs": "^7.4.0",
"gatsby-remark-responsive-iframe": "^6.4.0",
"gatsby-remark-smartypants": "^6.4.0",
"gatsby-source-filesystem": "^5.4.0",
"gatsby-transformer-remark": "^6.4.0",
"gatsby-transformer-yaml": "^5.4.0",
"katex": "^0.13.3",
"postcss": "^8.2.1",
"prismjs": "^1.15.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.70.0"
},
"devDependencies": {
"eslint": "^8.7.0",
"eslint-plugin-react": "^7.11.1",
"gatsby-plugin-image": "^3.4.0",
"gatsby-plugin-sharp": "^5.4.0",
"gatsby-remark-prismjs-title": "^1.0.0",
"gatsby-transformer-sharp": "^5.4.0",
"prettier": "^2.5.1"
},
"homepage": "https://ssshooter.com/",
"keywords": [
"gatsby",
"gatsby-theme",
"blog"
],
"license": "MIT",
"scripts": {
"dev": "gatsby develop --host=0.0.0.0",
"ser": "gatsby serve",
"lint": "./node_modules/.bin/eslint --ext .js,.jsx --ignore-pattern public .",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write 'src/**/*.js' 'src/**/*.md'",
"develop": "gatsby develop",
"start": "npm run develop",
"build": "gatsby build",
"fix-semi": "eslint --quiet --ignore-pattern node_modules --ignore-pattern public --parser babel-eslint --no-eslintrc --rule '{\"semi\": [2, \"never\"], \"no-extra-semi\": [2]}' --fix gatsby-node.js"
}
}