-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.14 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
{
"name": "markdown-pane",
"version": "0.2.1",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/solid/markdown-pane.git"
},
"main": "lib/index.js",
"scripts": {
"start": "webpack serve --config webpack.dev.config.js",
"build": "tsc",
"test": "jest",
"lint": "eslint ./src",
"prepublishOnly": "npm run lint && npm run test && npm run build"
},
"files": [
"/lib"
],
"keywords": [
"solid",
"markdown",
"pane",
"solid-panes",
"solidos"
],
"contributors": [
{
"name": "Vincent Tunru",
"url": "https://vincenttunru.com"
},
{
"name": "Angelo Veltens",
"email": "angelo.veltens@online.de",
"url": "https://angelo.veltens.org/profile/card#me"
}
],
"license": "MIT",
"dependencies": {
"@babel/preset-react": "^7.16.0",
"pane-registry": "^2.4.3",
"rdflib": "^2.2.10",
"react-markdown": "^5.0.3",
"solid-ui": "^2.4.11"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/code-frame": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@types/jest": "^27.0.2",
"@types/react": "^17.0.34",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"@webpack-cli/serve": "^1.6.0",
"babel-jest": "^27.3.1",
"babel-loader": "^8.2.3",
"core-js": "^3.19.1",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.26.1",
"html-webpack-plugin": "^4.5.2",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"react-test-renderer": "^17.0.2",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^4.4.0"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
}
}