-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.46 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": "cse3000-research-project.github.io",
"private": true,
"description": "",
"version": "0.2.0",
"author": "Jordi Smit",
"keywords": [],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby clean && gatsby develop",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"lint": "run-p lint:**",
"lint:prettier": "prettier --write \"**/*.{js,jsx,json,md}\"",
"lint:eslintFix": "eslint 'src/**/*.{ts,tsx}' --fix",
"lint:eslint": "eslint 'src/**/*.{ts,tsx}'",
"lint:typescript": "tsc",
"test": "gatsby build --prefix-paths",
"deploy": "gatsby build --prefix-paths && gh-pages -d public -r https://[email protected]/CSE3000-research-project/cse3000-research-project.github.io.git"
},
"pre-commit": [
"lint"
],
"precommit.silent": false,
"dependencies": {
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@material-ui/styles": "^4.11.4",
"@material-ui/system": "^4.11.3",
"argparse": "^1.0.10",
"deepmerge": "^4.2.2",
"gatsby": "^3.6.2",
"gatsby-image": "^3.6.0",
"gatsby-plugin-graphql-codegen": "^3.0.0",
"gatsby-plugin-htaccess": "^1.4.0",
"gatsby-plugin-manifest": "^3.6.0",
"gatsby-plugin-material-ui": "^3.0.1",
"gatsby-plugin-nprogress": "^3.6.0",
"gatsby-plugin-offline": "^4.6.0",
"gatsby-plugin-react-helmet": "^4.6.0",
"gatsby-plugin-robots-txt": "^1.6.2",
"gatsby-plugin-sharp": "^3.6.0",
"gatsby-plugin-sitemap": "^4.2.0",
"gatsby-plugin-typescript": "^3.6.0",
"gatsby-remark-images": "^5.3.0",
"gatsby-source-filesystem": "^3.6.0",
"gatsby-transformer-sharp": "^3.6.0",
"gatsby-transformer-yaml": "^3.6.0",
"glob": "^7.1.7",
"js-yaml": "^3.14.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-helmet": "^6.1.0"
},
"devDependencies": {
"@types/node": "^15.14.9",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.4",
"@types/react-helmet": "^6.1.1",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-unused-imports": "^1.1.1",
"gh-pages": "^3.2.0",
"npm-run-all": "^4.1.5",
"pre-commit": "^1.2.2",
"prettier": "^2.3.0",
"typescript": "^4.3.2"
}
}