-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.65 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
61
62
63
64
65
66
67
68
{
"name": "breaking-changelog",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "xo && stylelint 'pages/**/*.js'"
},
"dependencies": {
"@apollo/react-hooks": "^3.1.0",
"apollo-boost": "^0.4.4",
"core-js": "^3.2.1",
"graphql": "^14.5.5",
"modern-normalize": "^0.5.0",
"next": "9.3.3",
"node-fetch": "^2.6.0",
"react": "16.9.0",
"react-dom": "16.9.0",
"react-markdown": "^4.2.2",
"react-use-form-state": "^0.11.0",
"styled-components": "^5.0.0-beta.8",
"styled-components-breakpoint": "^2.1.1",
"tiny-version-compare": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@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",
"imagemin-optipng": "^7.0.0",
"imagemin-svgo": "^7.0.0",
"next-fonts": "^0.18.0",
"next-offline": "^4.0.5",
"next-optimized-images": "^2.5.3",
"stylelint": "^10.1.0",
"stylelint-config-recommended": "^2.2.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.8.0",
"svg-sprite-loader": "^4.1.6",
"webp-loader": "^0.5.0",
"xo": "^0.24.0"
},
"xo": {
"nodeVersion": ">=10",
"parser": "babel-eslint",
"envs": [
"node",
"browser"
],
"extends": "xo-react",
"settings": {
"react": {
"version": "16.9"
}
},
"rules": {
"import/no-unassigned-import": "off",
"react/jsx-child-element-spacing": "off",
"unicorn/filename-case": "off"
}
}
}