-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 878 Bytes
/
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
{
"name": "next-boilerplate",
"version": "2.3.0",
"description": "Boilerplate for a Next.js + styled-components website.",
"license": "MIT",
"repository": "https://github.com/solarsailer/next-boilerplate",
"author": {
"name": "Matthieu Oger",
"url": "https://matthieuoger.com/"
},
"scripts": {
"start": "next -p 8000",
"build": "next build",
"prod": "next start -p 8000",
"lint": "next lint"
},
"prettier": {
"semi": false,
"singleQuote": true,
"bracketSpacing": false,
"trailingComma": "none",
"arrowParens": "avoid"
},
"dependencies": {
"next": "^13.4.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^6.0.1"
},
"devDependencies": {
"eslint": "^8.43.0",
"eslint-config-next": "^13.4.7",
"eslint-config-standard": "^17.1.0",
"prettier": "^2.8.8"
}
}