-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.21 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.21 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
{
"name": "thomasc.dev",
"private": true,
"description": "My personal website",
"version": "0.1.0",
"author": "Thomas Corthouts <thomas@thomasc.dev>",
"dependencies": {
"@emotion/react": "^11.0.0",
"@sanity/client": "^2.2.6",
"groq": "^2.2.6",
"next": "^10.0.6",
"next-compose-plugins": "^2.2.1",
"next-svgr": "^0.0.2",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"theme-ui": "0.6.0-alpha.6"
},
"devDependencies": {
"@netlify/plugin-nextjs": "^1.1.1",
"@types/node": "^14.14.25",
"@types/react": "^17.0.1",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.8.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.17.0",
"prettier": "^1.19.1",
"typescript": "^4.1.5"
},
"license": "MIT",
"scripts": {
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"eslint:all": "./node_modules/eslint/bin/eslint.js --ignore-path .gitignore --ignore-path .prettierignore \"**/*.{js,jsx}\"",
"eslint": "./node_modules/eslint/bin/eslint.js",
"dev": "next dev",
"build": "next build",
"start": "next start"
}
}