-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
126 lines (126 loc) · 2.85 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"version": "2.0.1",
"name": "next-mdx-blog",
"description": "next-mdx-blog",
"main": "dist/index.js",
"source": "src/index.js",
"author": {
"name": "Andrew Lisowski",
"email": "[email protected]"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "https://github.com/hipstersmoothie/next-mdx-blog"
},
"scripts": {
"build": "babel src -d dist --ignore '**/*.test.js'",
"test": "jest",
"lint": "xo",
"prerelease": "npm run build",
"release": "github-semantic-version --bump --changelog --push --publish"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.1.0",
"@babel/plugin-transform-regenerator": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.1.2",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"eslint": "^5.7.0",
"eslint-config-prettier": "^3.1.0",
"eslint-config-xo-react": "^0.17.0",
"eslint-plugin-react": "^7.11.1",
"github-semantic-version": "^7.6.0",
"husky": "^1.1.2",
"jest": "^23.6.0",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3",
"xo": "^0.23.0"
},
"peerDepedencies": {
"styled-jsx": "3.1.0"
},
"dependencies": {
"@mdx-js/mdx": "^0.15.5",
"bulma-pagination-react": "^0.0.3",
"dayjs": "^1.7.7",
"glob": "^7.1.3",
"next": "^7.0.2",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"rss": "^1.2.2",
"styled-jsx": "^3.1.0"
},
"prettier": {
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage",
"coverageReporters": [
"json",
"lcov",
"text",
"html"
],
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/node_modules/**",
"!**/vendor/**"
],
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"xo": {
"parser": "babel-eslint",
"env": [
"dom",
"jest"
],
"extends": [
"prettier",
"xo-react/space"
],
"rules": {
"react/jsx-tag-spacing": "always"
}
},
"babel": {
"presets": [
"@babel/env",
"next/babel"
]
},
"license": "MIT",
"gsv": {
"startVersion": "0.0.0",
"majorLabel": "Version: Major",
"minorLabel": "Version: Minor",
"patchLabel": "Version: Patch",
"internalLabel": "internal"
}
}