-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.79 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.79 KB
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
{
"name": "robertistok-personal-website",
"private": true,
"description": "My personal website",
"version": "0.1.0",
"author": "Robert Istok <robertistok94@gmail.com>",
"dependencies": {
"@typescript-eslint/parser": "^4.18.0",
"babel-plugin-styled-components": "^1.10.6",
"dotenv": "^8.1.0",
"gatsby": "^3.1.1",
"gatsby-image": "^3.1.0",
"gatsby-plugin-google-analytics": "^3.1.0",
"gatsby-plugin-manifest": "^3.1.0",
"gatsby-plugin-netlify-cms": "^5.1.0",
"gatsby-plugin-offline": "^4.1.0",
"gatsby-plugin-react-helmet": "^4.1.0",
"gatsby-plugin-sharp": "^3.1.1",
"gatsby-plugin-sitemap": "^3.1.0",
"gatsby-plugin-styled-components": "^4.1.0",
"gatsby-plugin-typescript": "^3.1.0",
"gatsby-plugin-typography": "^3.1.0",
"gatsby-remark-bitly-links": "^1.0.2",
"gatsby-remark-copy-linked-files": "^3.1.0",
"gatsby-remark-images": "^4.1.0",
"gatsby-remark-prismjs": "^4.1.0",
"gatsby-remark-responsive-iframe": "^3.1.0",
"gatsby-remark-smartypants": "^3.1.0",
"gatsby-source-filesystem": "^3.1.0",
"gatsby-transformer-remark": "^3.1.0",
"gatsby-transformer-sharp": "^3.1.0",
"gsap": "^3.6.0",
"prismjs": "^1.17.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-icons": "^4.2.0",
"react-spring": "^8.0.27",
"react-typography": "^0.16.19",
"styled-components": "^5.2.1",
"typeface-arvo": "^1.1.13",
"typeface-cabin": "^1.1.13",
"typography": "^0.16.19",
"typography-theme-doelger": "^0.16.19"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@types/node": "^14.14.35",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"@types/react-helmet": "^6.1.0",
"@types/styled-components": "^5.1.9",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^24.3.2",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
},
"homepage": "https://robertistok.com",
"keywords": [
"robertistok"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/robertistok/personal-website"
},
"scripts": {
"build": "gatsby build",
"clean": "rimraf .cache public",
"develop": "npm run clean && gatsby develop",
"format": "prettier --write src/**/*.{js,jsx}",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\""
}
}