-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.17 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
51
52
53
54
55
56
57
58
59
60
{
"author": {
"email": "jonah@jonah.pw",
"name": "Jonah Snider",
"url": "https://jonah.pw"
},
"bugs": {
"url": "https://github.com/pizzafox/nextjs-starter/issues"
},
"dependencies": {
"next": "9.5.3",
"react": "16.13.1",
"react-dom": "16.13.1"
},
"devDependencies": {
"@types/react": "16.9.49",
"eslint-config-xo-react": "0.23.0",
"eslint-plugin-react": "7.20.6",
"eslint-plugin-react-hooks": "4.1.0",
"prettier": "2.0.4",
"typescript": "3.9.7",
"xo": "0.33.1"
},
"engines": {
"node": "12"
},
"license": "Apache-2.0",
"name": "nextjs-starter",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/pizzafox/nextjs-starter.git"
},
"scripts": {
"build": "next build",
"dev": "next",
"export": "next export",
"lint": "xo",
"preexport": "rm -rf out",
"start": "next start",
"style": "prettier --ignore-path .gitignore --check \"./**/*.{{j,t}{s,sx},flow,{sc,c,le}ss,json,m{d,dx},{y,ya}ml}\""
},
"version": "1.0.0",
"xo": {
"extends": [
"xo/esnext",
"xo/browser",
"xo-react"
],
"overrides": [
{
"extends": [
"xo"
],
"files": "*.config.js"
}
],
"prettier": true
}
}