-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.15 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
{
"name": "gatsby-material-typescript-starter",
"private": true,
"description": "A simple starter using Typescript & Material-ui",
"version": "0.1.0",
"author": "Julien CARON <juliencaron@protonmail.com>",
"keywords": [
"gatsby",
"typescript",
"eslint",
"prettier",
"material-ui"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "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:eslint": "eslint 'src/**/*.{ts,tsx}'",
"lint:typescript": "tsc",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@material-ui/styles": "^4.10.0",
"deepmerge": "^4.2.2",
"fontsource-roboto": "^2.1.4",
"gatsby": "^2.24.2",
"gatsby-plugin-google-analytics": "^2.3.11",
"gatsby-plugin-manifest": "^2.4.18",
"gatsby-plugin-material-ui": "^2.1.6",
"gatsby-plugin-offline": "^3.2.17",
"gatsby-plugin-react-helmet": "^3.3.10",
"gatsby-plugin-typescript": "^2.4.14",
"react": "latest",
"react-dom": "latest",
"react-helmet": "^6.0.0"
},
"devDependencies": {
"@types/node": "^14.0.23",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"@types/react-helmet": "^5.0.15",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"graphql": "14.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.4",
"source-map-support": "^0.5.16",
"ts-node": "^8.8.2",
"typescript": "^3.8.3"
},
"repository": {
"type": "git",
"url": "https://github.com/Junscuzzy/gatsby-material-typescript-starter"
},
"bugs": {
"url": "https://github.com/Junscuzzy/gatsby-material-typescript-starter/issues"
}
}