-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.34 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
{
"name": "pizzaql-site",
"version": "1.0.0",
"description": "PizzaQL project website",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"test": "xo && stylelint 'pages/**/*.js'"
},
"main": "index.js",
"author": "Antoni Kepinski <[email protected]> (https://kepinski.me)",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.5.5",
"@zeit/next-css": "^1.0.1",
"babel-eslint": "^10.0.3",
"babel-plugin-styled-components": "^1.10.6",
"eslint-config-xo-react": "^0.20.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"next-fonts": "^0.18.0",
"next-offline": "^4.0.5",
"stylelint": "^10.1.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-config-xo": "^0.15.0",
"stylelint-processor-styled-components": "^1.8.0",
"xo": "*"
},
"dependencies": {
"core-js": "^3.2.1",
"modern-normalize": "^0.5.0",
"next": "^9.0.5",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"styled-components": "^4.3.2",
"styled-components-breakpoint": "^2.1.1"
},
"xo": {
"nodeVersion": ">=10",
"parser": "babel-eslint",
"envs": [
"node",
"browser"
],
"extends": "xo-react",
"settings": {
"react": {
"version": "16.8"
}
},
"rules": {
"import/no-unassigned-import": "off",
"react/boolean-prop-naming": "off"
}
}
}