forked from keycap-archivist/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.53 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
{
"name": "website",
"private": true,
"description": "",
"version": "0.1.0",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "1.2.35",
"@fortawesome/free-brands-svg-icons": "5.15.3",
"@fortawesome/free-solid-svg-icons": "5.15.3",
"@fortawesome/react-fontawesome": "0.1.14",
"@reach/router": "1.3.4",
"autoprefixer": "10.2.5",
"axios": "0.21.3",
"cross-env": "7.0.3",
"gatsby": "3.13.0",
"gatsby-image": "3.11.0",
"gatsby-plugin-canonical-urls": "3.5.0",
"gatsby-plugin-google-analytics": "3.5.0",
"gatsby-plugin-next-seo": "1.8.0",
"gatsby-plugin-offline": "4.13.0",
"gatsby-plugin-postcss": "4.13.0",
"gatsby-plugin-purgecss": "6.0.2",
"gatsby-plugin-react-helmet": "4.13.0",
"gatsby-plugin-robots-txt": "1.6.10",
"gatsby-plugin-sass": "4.13.0",
"gatsby-plugin-sharp": "3.13.0",
"gatsby-plugin-sitemap": "3.2.0",
"gatsby-plugin-web-font-loader": "1.0.4",
"gatsby-source-filesystem": "3.5.0",
"gatsby-transformer-remark": "4.10.0",
"gatsby-transformer-sharp": "3.13.0",
"html-to-react": "1.4.5",
"lodash": "4.17.21",
"node-sass": "5.0.0",
"npm-check-updates": "11.8.5",
"postcss": "8.3.6",
"prop-types": "15.7.2",
"quick-score": "0.0.12",
"react": "17.0.2",
"react-copy-to-clipboard": "5.0.4",
"react-country-flag": "^3.0.2",
"react-dom": "17.0.2",
"react-helmet-async": "1.1.2",
"react-sortablejs": "6.0.0",
"slugify": "1.5.3",
"sortablejs": "1.14.0",
"svg-react-loader": "0.4.6",
"tailwindcss": "2.2.9"
},
"devDependencies": {
"eslint": "7.32.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.25.1",
"gatsby-plugin-no-sourcemaps": "3.13.0",
"prettier": "2.3.2",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"stylelint-scss": "^3.20.1"
},
"license": "MIT",
"scripts": {
"check-db": "node scripts/check-db-rev.js",
"update-db": "node scripts/update-db.js",
"lint": "npx eslint ./src --ext js && npx stylelint 'src/**/*.scss' ",
"build": "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,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean"
}
}