This repository has been archived by the owner on Jul 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
109 lines (109 loc) · 3.1 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
{
"name": "via-web",
"version": "1.0.0",
"private": "false",
"description": "via-web",
"author": "Christoff Linde",
"contributors": [
{
"name": "Christoff Linde",
"email": "christoff.linde@gmail.com",
"url": "https://github.com/christoff-linde"
},
{
"name": "Nicole Lou",
"email": "",
"url": "https://github.com/nicolellou"
},
{
"name": "Brian Irons",
"email": "",
"url": "https://github.com/brian-david"
},
{
"name": "Kim Samson",
"email": "",
"url": "https://github.com/ksamson2"
},
{
"name": "Jacine",
"email": "",
"url": "https://github.com/Jaceyjay"
}
],
"keywords": [
"gatsby"
],
"repository": {
"type": "git",
"url": "git+https://github.com/IMY772-2022/via-web"
},
"scripts": {
"develop": "gatsby develop -H 0.0.0.0 -p 8000",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"typecheck": "tsc --noEmit",
"prepare": "husky install",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md,scss,css}\"",
"lint": "eslint \"**/*.{js,jsx,ts,tsx,json,md,scss,css}\""
},
"dependencies": {
"@aws-amplify/ui-react": "^2.15.8",
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-regular-svg-icons": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.1.18",
"@mdx-js/mdx": "v1",
"@mdx-js/react": "v1",
"ansi-html-community": "^0.0.8",
"aws-amplify": "^4.3.20",
"bulma": "^0.9.3",
"bulma-checkradio": "^2.1.3",
"gatsby": "^4.10.3",
"gatsby-plugin-fontawesome-css": "^1.2.0",
"gatsby-plugin-image": "^2.10.1",
"gatsby-plugin-manifest": "^4.12.1",
"gatsby-plugin-mdx": "^3.15.2",
"gatsby-plugin-offline": "^5.12.1",
"gatsby-plugin-react-helmet": "^5.10.0",
"gatsby-plugin-sass": "^5.10.2",
"gatsby-plugin-sharp": "^4.10.2",
"gatsby-plugin-sitemap": "^5.10.2",
"gatsby-plugin-use-query-params": "^1.0.1",
"gatsby-source-filesystem": "^4.10.1",
"gatsby-transformer-sharp": "^4.10.0",
"lighthouse": "^9.5.0",
"query-string": "^7.1.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-query": "^3.39.1",
"sass": "^1.49.9",
"use-query-params": "^1.2.3"
},
"devDependencies": {
"@babel/eslint-parser": "^7.17.0",
"@types/node": "^17.0.23",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"@types/react-helmet": "^6.1.5",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.0",
"lint-staged": "^12.3.7",
"prettier": "^2.6.1",
"typescript": "^4.6.3"
},
"lint-staged": {
"*.{js,ts,tsx,jsx}": "eslint --fix",
"*.{js,ts,tsx,jsx,md,json}": "prettier --write"
}
}