-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.2 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
{
"name": "@hitechline/next-mdx",
"version": "0.0.3",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "typings/index.d.ts",
"scripts": {
"fix": "yarn lint:fix && yarn prettier:fix",
"clean": "rimraf .tarball dist typings provider/**.js*",
"prepublishOnly": "yarn build",
"release": "yarn node-env-run --exec \"semantic-release\"",
"test": "jest --passWithNoTests",
"test:watch": "yarn test --watchAll",
"lint": "eslint ./ --ext js,jsx,ts,tsx",
"lint:fix": "eslint ./ --ext js,jsx,ts,tsx --fix",
"prettier": "prettier --check ./**/*.{js,jsx,ts,tsx}",
"prettier:fix": "prettier --write ./**/*.{js,jsx,ts,tsx}",
"build": "yarn build:package && yarn build:types",
"prebuild": "yarn clean",
"build:watch": "yarn build:package -w",
"prebuild:watch": "yarn clean",
"build:types": "tsc -p tsconfig.types.json",
"build:package": "rollup -c rollup.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hitechline/next-mdx.git"
},
"publishConfig": {
"access": "public"
},
"directories": {
"lib": "src",
"test": "__tests__"
},
"files": [
"dist",
"typings",
"provider"
],
"keywords": [
"react",
"next",
"mdx",
"render"
],
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"dependencies": {
"@babel/core": "^7.12.17",
"@babel/preset-env": "^7.13.10",
"@babel/preset-react": "^7.12.13",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@mdx-js/runtime": "^1.6.22",
"babel-plugin-transform-remove-imports": "^1.5.2",
"parse-imports": "^1.0.0",
"react-is": "^17.0.1",
"unified": "^10.0.0"
},
"devDependencies": {
"@babel/cli": "7.16.8",
"@babel/types": "7.16.8",
"@hitechline/eslint-config": "2.0.5",
"@rollup/plugin-babel": "5.3.1",
"@rollup/plugin-commonjs": "21.0.3",
"@rollup/plugin-node-resolve": "13.1.3",
"@rollup/plugin-typescript": "8.3.4",
"@semantic-release/changelog": "6.0.2",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.0.7",
"@semantic-release/npm": "8.0.3",
"@semantic-release/release-notes-generator": "10.0.3",
"@types/jest": "27.4.1",
"@types/react": "17.0.43",
"@types/react-dom": "17.0.14",
"@types/react-is": "17.0.3",
"@typescript-eslint/eslint-plugin": "5.10.2",
"@typescript-eslint/parser": "5.10.2",
"conventional-changelog-angular": "5.0.13",
"conventional-changelog-conventionalcommits": "4.6.3",
"eslint": "8.7.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.3.0",
"eslint-import-resolver-typescript": "2.5.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-import-helpers": "1.2.1",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"jest": "27.4.7",
"node-env-run": "4.0.2",
"prettier": "2.5.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"rimraf": "3.0.2",
"rollup": "2.64.0",
"semantic-release": "18.0.1",
"typescript": "4.5.5"
}
}