-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.59 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
{
"name": "freyr",
"private": true,
"description": "Obserfy landing page",
"version": "0.1.0",
"author": "Chrisando Pramudhita <[email protected]>",
"dependencies": {
"@lingui/cli": "3.14.0",
"@lingui/core": "3.14.0",
"@lingui/macro": "3.14.0",
"@lingui/react": "3.14.0",
"@mdx-js/mdx": "1.6.22",
"@mdx-js/react": "1.6.22",
"@tailwindcss/typography": "0.5.8",
"autoprefixer": "10.4.13",
"babel-plugin-macros": "3.1.0",
"gatsby": "3.14.6",
"gatsby-plugin-canonical-urls": "3.14.0",
"gatsby-plugin-gatsby-cloud": "3.2.1",
"gatsby-plugin-image": "1.14.2",
"gatsby-plugin-manifest": "3.14.0",
"gatsby-plugin-mdx": "2.14.2",
"gatsby-plugin-netlify": "5.0.1",
"gatsby-plugin-netlify-cache": "2.0.0",
"gatsby-plugin-offline": "4.14.0",
"gatsby-plugin-postcss": "4.14.0",
"gatsby-plugin-preact": "5.14.0",
"gatsby-plugin-preload-fonts": "2.14.0",
"gatsby-plugin-react-helmet": "4.14.0",
"gatsby-plugin-remove-trailing-slashes": "3.14.0",
"gatsby-plugin-sharp": "3.14.3",
"gatsby-plugin-sitemap": "4.10.0",
"gatsby-plugin-typegen": "3.0.0",
"gatsby-plugin-webpack-bundle-analyser-v2": "1.1.30",
"gatsby-remark-images": "5.11.0",
"gatsby-remark-prismjs": "5.11.0",
"gatsby-source-filesystem": "3.14.0",
"gatsby-theme-i18n": "3.0.0",
"gatsby-theme-i18n-lingui": "3.0.0",
"gatsby-transformer-remark": "4.11.0",
"gatsby-transformer-sharp": "3.14.0",
"make-plural": "7.1.0",
"postcss": "8.4.18",
"postcss-preset-env": "6.7.1",
"preact": "10.11.2",
"preact-render-to-string": "5.2.6",
"prism-themes": "1.9.0",
"prismjs": "1.29.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-helmet": "6.1.0",
"socket.io-client": "4.5.3"
},
"devDependencies": {
"@babel/core": "7.20.2",
"@babel/preset-typescript": "7.18.6",
"@types/react": "18.0.25",
"@types/react-helmet": "6.1.5",
"@typescript-eslint/eslint-plugin": "5.41.0",
"@typescript-eslint/parser": "5.41.0",
"babel-core": "7.0.0-bridge.0",
"babel-preset-gatsby": "1.14.0",
"eslint": "8.26.0",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-node": "0.3.6",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.1.4",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.31.10",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "8.0.2",
"lint-staged": "11.2.6",
"prettier": "2.7.1",
"tailwindcss": "2.2.19",
"typescript": "4.8.4",
"typescript-plugin-css-modules": "3.4.0"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "yarn i18n:build && gatsby build",
"develop": "gatsby develop -H 0.0.0.0 -p 8002",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"lint": "eslint --ext .tsx,.ts src/",
"typecheck": "tsc --noemit",
"preload-fonts": "gatsby-preload-fonts",
"i18n:add-locale": "lingui add-locale",
"i18n:extract": "lingui extract",
"i18n:compile": "lingui compile",
"i18n:build": "yarn i18n:extract && yarn i18n:compile",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"lint-staged": {
"*.{tsx,ts}": "prettier -w"
}
}