-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.57 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
{
"name": "vadistic-website",
"description": "Personal website",
"version": "0.1.0",
"author": "Jakub Wadas <[email protected]>",
"keywords": [
"gatsby",
"typescript",
"react",
"developement",
"frontend"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vadistic/website"
},
"scripts": {
"build": "gatsby build",
"dev": "gatsby develop",
"dev-m": "gatsby develop --host $(ifconfig | awk '/inet 192.168.[0-9]+.[0-9]+/{print $2}') --port 8080",
"serve": "serve public",
"format:all": "prettier --write -l --no-color './{src,types}/**/*.{js,ts,tsx,md,mdx}'",
"format": "pretty-quick --staged",
"lint": "tslint -p .",
"typecheck": "tsc -p . --noEmit",
"pre-commit": "yarn format && yarn lint && yarn typecheck",
"apollo:push": "apollo service:push --endpoint http://localhost:8000/___graphql",
"apollo:codegen": "apollo client:codegen ./src/generated/graphql.ts --outputFlat --target typescript",
"test": "echo 'No tests specified'"
},
"husky": {
"hooks": {
"pre-commit": "yarn format && yarn lint && yarn typecheck"
}
},
"dependencies": {
"@mdx-js/mdx": "^1.4.5",
"@mdx-js/react": "^1.4.5",
"@mdx-js/tag": "^0.20.3",
"@svgr/webpack": "^4.3.2",
"babel-plugin-styled-components": "^1.10.6",
"gatsby": "^2.15.15",
"gatsby-image": "^2.2.19",
"gatsby-plugin-layout": "^1.1.7",
"gatsby-plugin-manifest": "^2.2.16",
"gatsby-plugin-mdx": "^1.0.41",
"gatsby-plugin-offline": "^3.0.6",
"gatsby-plugin-react-helmet": "^3.1.7",
"gatsby-plugin-sharp": "^2.2.22",
"gatsby-plugin-styled-components": "^3.1.5",
"gatsby-plugin-svgr": "^2.0.2",
"gatsby-plugin-typescript": "^2.1.7",
"gatsby-source-filesystem": "^2.1.22",
"gatsby-transformer-remark": "^2.6.22",
"gatsby-transformer-sharp": "^2.2.14",
"graphql": "14.5.5",
"grommet": "^2.7.8",
"mdx.macro": "^0.2.9",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-helmet": "^5.2.1",
"styled-components": "^4.3.2",
"typeface-rubik": "^0.0.72"
},
"devDependencies": {
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"@types/react-helmet": "^5.0.10",
"@types/styled-components": "^4.1.19",
"apollo": "^2.18.3",
"dotenv": "^8.1.0",
"husky": "^3.0.5",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"serve": "^11.1.0",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.0.0",
"typescript": "^3.6.3"
},
"resolutions": {
"graphql": "14.5.5"
}
}