-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
41 lines (41 loc) · 1.13 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
{
"name": "react-portable-text",
"version": "0.6.0",
"description": "An easy way to render Portable Text block content in React applications.",
"author": "Corey Ward <[email protected]>",
"repository": "https://github.com/coreyward/react-portable-text",
"license": "MPL-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/index.js",
"dist/index.d.ts"
],
"dependencies": {
"@sanity/block-content-to-react": "^3.0.0"
},
"peerDependencies": {
"react": ">16.8.0 || ^17.0.0"
},
"devDependencies": {
"@sanity/block-content-to-react": "^3.0.0",
"esbuild": "^0.8.57",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.2.1",
"prop-types": "^15.8.1",
"react": "^17.0.1",
"typescript": "^4.5.5"
},
"scripts": {
"prebuild": "tsc",
"build": "node ./build.js"
}
}