-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.21 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
{
"name": "sara-diercks-portfolio",
"private": true,
"author": "Melanie Seltzer <melanieseltzer1@gmail.com>",
"description": "GIS portfolio for Sara Diercks",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://github.com/melanieseltzer/saradiercks.com.git"
},
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "eslint --cache --ext .js,.ts,.tsx,.mdx .",
"lint:fix": "yarn lint --fix",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"format": "yarn format:fix && yarn lint:fix"
},
"dependencies": {
"graphql": "^16.6.0",
"graphql-request": "^5.0.0",
"next": "^13.3.0",
"pretty-bytes": "^6.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-markdown": "^8.0.3"
},
"devDependencies": {
"@mels/eslint-config-base": "^1.0.1",
"@mels/eslint-config-prettier": "^1.0.0",
"@mels/eslint-config-react": "^1.0.0",
"@mels/prettier-config": "^1.0.0",
"autoprefixer": "^10.4.12",
"eslint": "^8.23.0",
"eslint-config-next": "^13.3.0",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"tailwindcss": "^3.3.1"
}
}