-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
96 lines (96 loc) · 3.17 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
{
"name": "no.lol",
"private": true,
"description": "Lauren Tan's personal blog",
"version": "0.1.0",
"author": "Lauren Tan <arr@sugarpirate.com>",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "1.2.36",
"@fortawesome/free-brands-svg-icons": "5.15.4",
"@fortawesome/react-fontawesome": "0.1.16",
"@weknow/gatsby-remark-twitter": "0.2.3",
"gatsby": "2.32.13",
"gatsby-image": "2.11.0",
"gatsby-plugin-eslint": "4.0.2",
"gatsby-plugin-favicon": "3.1.6",
"gatsby-plugin-feed": "2.13.1",
"gatsby-plugin-google-analytics": "2.11.0",
"gatsby-plugin-manifest": "2.12.1",
"gatsby-plugin-netlify": "2.11.1",
"gatsby-plugin-netlify-cache": "2.0.0",
"gatsby-plugin-offline": "3.10.2",
"gatsby-plugin-react-helmet": "3.10.0",
"gatsby-plugin-react-svg": "3.1.0",
"gatsby-plugin-sharp": "2.14.4",
"gatsby-plugin-typescript": "2.12.1",
"gatsby-plugin-typography": "2.12.0",
"gatsby-plugin-web-font-loader": "1.0.4",
"gatsby-remark-autolink-headers": "2.11.0",
"gatsby-remark-code-titles": "1.1.0",
"gatsby-remark-copy-linked-files": "2.10.0",
"gatsby-remark-embed-video": "3.1.1",
"gatsby-remark-external-links": "0.0.4",
"gatsby-remark-images": "3.11.1",
"gatsby-remark-prismjs": "3.13.0",
"gatsby-remark-responsive-iframe": "2.11.0",
"gatsby-remark-smartypants": "2.10.0",
"gatsby-source-filesystem": "2.11.1",
"gatsby-transformer-remark": "2.16.1",
"gatsby-transformer-sharp": "2.12.1",
"prismjs": "1.25.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-helmet": "6.1.0",
"react-typography": "0.16.20",
"typography": "0.16.21",
"typography-theme-wordpress-2016": "0.16.19"
},
"devDependencies": {
"@types/node": "14.18.1",
"@types/react": "17.0.38",
"@types/react-dom": "17.0.11",
"@types/react-helmet": "6.1.5",
"@types/typography": "0.16.4",
"@typescript-eslint/eslint-plugin": "5.10.0",
"@typescript-eslint/parser": "5.10.0",
"eslint": "8.5.0",
"eslint-config-prettier": "8.3.0",
"eslint-loader": "4.0.2",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.27.1",
"execa": "6.0.0",
"lighthousebot": "https://github.com/GoogleChromeLabs/lighthousebot",
"prettier": "2.5.1",
"signale": "1.4.0",
"typescript": "4.5.4",
"wait-for-netlify-preview": "1.2.1"
},
"homepage": "https://github.com/poteto/no.lol",
"keywords": [
"gatsby",
"blog",
"lauren tan",
"sugarpirate",
"no.lol"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/poteto/no.lol.git"
},
"scripts": {
"build": "gatsby build",
"dev": "gatsby develop",
"develop": "gatsby develop",
"format": "prettier --write src/**/*.{js,jsx}",
"start": "npm run develop",
"serve": "gatsby serve",
"typecheck": "tsc",
"lint": "eslint --ignore-path .gitignore . --ext ts --ext tsx --ext js --ext jsx",
"lint:fix": "eslint --ignore-path .gitignore . --ext ts --ext tsx --ext js --ext jsx --fix",
"test": "npm run lint",
"lh": "lighthousebot",
"preoptimize:images": "node scripts/preoptimize-images.js"
}
}