forked from SolidOS/solid-panes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.02 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.02 KB
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
{
"name": "solid-panes",
"version": "1.3.3",
"description": "Solid-compatible Panes: applets for the mashlib and databrowser",
"main": "./dist/main.js",
"scripts": {
"build-browserified": "npm run build",
"build-dist": "webpack --progress --colors",
"build": "npm run clean && npm run build-dist",
"watch": "npm run clean && webpack --progress --colors --watch --mode=\"development\"",
"clean": "rm -rf dist/",
"lint": "eslint \"**/*.ts\"",
"test-watch": "npm run lint && jest --onlyChanged --watch",
"test": "npm run lint && jest"
},
"repository": {
"type": "git",
"url": "https://github.com/solid/solid-panes"
},
"keywords": [
"solid",
"decentralized",
"widgets",
"ui",
"web",
"rdf",
"ldp",
"linked",
"panes",
"app",
"data"
],
"author": "Tim Berners-Lee <timbl@mit.edu>",
"license": "MIT",
"bugs": {
"url": "https://github.com/solid/solid-panes/issues"
},
"homepage": "https://github.com/solid/solid-panes",
"dependenciesFile": {
"@solid/better-simple-slideshow": "^0.1.0",
"babel-preset-env": "^1.6.1",
"babel-preset-metalab": "^1.0.0",
"mime-types": "^2.1.13",
"rdflib": "file://../../linkeddata/rdflib.js",
"solid-ui": "file://../../solid/solid-ui"
},
"dependencies": {
"@babel/polyfill": "^7.4.4",
"@solid/better-simple-slideshow": "^0.1.0",
"babel-preset-env": "^1.6.1",
"babel-preset-metalab": "^1.0.0",
"chat-pane": "^1.2.7",
"contacts-pane": "^1.0.3",
"folder-pane": "^1.0.4",
"issue-pane": "^1.0.4",
"meeting-pane": "^1.0.4",
"mime-types": "^2.1.24",
"pane-registry": "^1.0.4",
"rdflib": "^0.20.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-markdown": "^4.0.8",
"solid-ui": "^0.12.2",
"source-pane": "^1.0.3"
},
"dependenciesBackup": {
"@solid/better-simple-slideshow": "^0.1.0",
"babel-preset-env": "^1.6.1",
"babel-preset-metalab": "^1.0.0",
"mime-types": "^2.1.13",
"rdflib": ">=0.17.1",
"solid-ui": ">=0.11.5"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@testing-library/react": "^8.0.1",
"@types/jest": "^24.0.12",
"@types/rdflib": "^0.20.0",
"@types/react": "^16.8.19",
"@types/react-dom": "^16.8.4",
"@types/webpack-env": "^1.13.9",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"babel-loader": "^8.0.5",
"babel-preset-es2015": "^6.24.1",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-standard": "^4.0.0",
"fork-ts-checker-webpack-plugin": "^1.3.0",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"typescript": "^3.4.5",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.2"
}
}