-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.28 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
{
"name": "@stephen-lewis/website",
"version": "2.1.0",
"description": "Stephen Lewis' personal website.",
"keywords": [
"personal website"
],
"homepage": "https://stephen-lewis.me.uk/",
"bugs": {
"url": "https://github.com/stephen-lewis/website/issues"
},
"license": "UNLICENSED",
"author": {
"name": "Stephen Lewis",
"email": "[email protected]"
},
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/stephen-lewis/website"
},
"scripts": {
"build": "next build",
"dev": "next",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"lint": "eslint \"**/*.{js,jsx}\"",
"start": "next start",
"export": "next build && next export"
},
"dependencies": {
"emailjs-com": "^2.4.1",
"next": "^9.3.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-google-recaptcha": "^2.0.1",
"react-icons": "^3.8.0",
"typeface-open-sans": "^0.0.75",
"uuid": "^3.4.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "1.7.0",
"prettier": "^1.19.1"
},
"private": true
}