-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
92 lines (91 loc) · 3.09 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
{
"name": "website",
"private": true,
"description": "",
"version": "0.1.0",
"dependencies": {
"@babel/plugin-proposal-decorators": "7.24.1",
"@fortawesome/fontawesome-svg-core": "6.5.2",
"@fortawesome/free-brands-svg-icons": "6.5.2",
"@fortawesome/free-solid-svg-icons": "6.5.2",
"@fortawesome/react-fontawesome": "0.2.0",
"@radix-ui/react-collapsible": "^1.0.2",
"@radix-ui/react-dialog": "^1.0.3",
"@radix-ui/react-select": "^1.2.1",
"@radix-ui/react-switch": "^1.0.2",
"@radix-ui/react-toast": "^1.1.3",
"@radix-ui/react-toggle": "^1.0.2",
"@radix-ui/react-tooltip": "^1.0.5",
"@reach/router": "1.3.4",
"axios": "1.6.7",
"babel-preset-gatsby": "^3.9.0",
"clsx": "^1.2.1",
"cross-env": "7.0.3",
"gatsby": "5.13.1",
"gatsby-image": "3.11.0",
"gatsby-omni-font-loader": "^2.0.2",
"gatsby-plugin-canonical-urls": "5.13.0",
"gatsby-plugin-google-analytics": "5.13.0",
"gatsby-plugin-image": "^3.9.0",
"gatsby-plugin-next-seo": "1.11.0",
"gatsby-plugin-offline": "6.13.0",
"gatsby-plugin-pnpm": "1.2.10",
"gatsby-plugin-postcss": "6.13.0",
"gatsby-plugin-react-helmet": "6.13.0",
"gatsby-plugin-robots-txt": "1.8.0",
"gatsby-plugin-sharp": "5.13.0",
"gatsby-plugin-sitemap": "6.13.0",
"gatsby-source-filesystem": "5.13.0",
"gatsby-transformer-remark": "6.13.0",
"gatsby-transformer-sharp": "5.13.0",
"html-to-react": "1.7.0",
"lodash": "4.17.21",
"process": "^0.11.10",
"prop-types": "15.8.1",
"quick-score": "0.2.0",
"react": "18.2.0",
"react-copy-to-clipboard": "5.1.0",
"react-country-flag": "3.1.0",
"react-dom": "18.2.0",
"react-helmet-async": "1.3.0",
"react-sortablejs": "6.1.4",
"slugify": "1.6.6",
"sortablejs": "1.15.0",
"svg-react-loader": "0.4.6",
"tailwind-merge": "^1.12.0",
"webpack": "^5.82.0"
},
"devDependencies": {
"autoprefixer": "10.4.14",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"gatsby-plugin-no-sourcemaps": "5.13.0",
"postcss": "8.4.31",
"postcss-import": "^15.1.0",
"prettier": "2.8.8",
"prettier-plugin-tailwindcss": "^0.4.0",
"tailwind-scrollbar": "^3.0.0",
"tailwindcss": "3.3.3",
"tailwindcss-animate": "^1.0.5"
},
"license": "MIT",
"scripts": {
"check-db": "node scripts/check-db-rev.js",
"update-db": "node scripts/update-db.js",
"lint": "npx eslint ./src --ext js",
"lint:fix": "npx eslint ./src --fix --ext js ",
"build": "cross-env TARGET=PROD gatsby build",
"package": "cross-env TARGET=PROD gatsby build --prefix-paths && cp CNAME public/CNAME && rm -rf public/*.js.map",
"develop": "cross-env TARGET=DEV gatsby develop --host=0.0.0.0",
"format": "prettier --write \"**/*.{js,jsx,css,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean"
}
}