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
110 lines (110 loc) · 3.29 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.29 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
105
106
107
108
109
110
{
"name": "solid-panes",
"version": "3.5.1",
"description": "Solid-compatible Panes: applets and views for the mashlib and databrowser",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "npm run clean && npm run build-version && npm run build-lib && npm run build-types",
"build-lib": "babel src -d lib --source-maps --extensions '.ts,.js'",
"build-dev": "webpack --progress --colors --mode=development",
"build-types": "tsc --emitDeclarationOnly",
"build-version": "./timestamp.sh > src/versionInfo.ts && eslint 'src/versionInfo.ts' --fix",
"watch": "npm run build-version && babel src -d lib --source-maps --extensions '.ts,.js' --watch",
"clean": "rm -rf dist lib",
"lint": "eslint 'src/**/*.js' 'src/**/*.ts'",
"lint-fix": "eslint 'src/**/*.js' 'src/**/*.ts' --fix",
"test": "npm run lint && jest",
"test-watch": "npm run lint && jest --onlyChanged --watch",
"prepublishOnly": "npm test && npm run build",
"postversion": "git push origin main --follow-tags"
},
"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",
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@solid/better-simple-slideshow": "^0.1.0",
"activitystreams-pane": "^0.6.0",
"babel-preset-env": "^1.7.0",
"babel-preset-metalab": "^1.0.0",
"chat-pane": "^2.4.9",
"contacts-pane": "^2.5.0",
"folder-pane": "^2.4.7",
"issue-pane": "^2.4.5",
"markdown-pane": "^0.1.1",
"meeting-pane": "^2.3.4",
"mime-types": "^2.1.28",
"pane-registry": "^2.4.1",
"profile-pane": "^1.0.0",
"rdflib": "^2.2.3",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"solid-auth-cli": "^1.0.15",
"solid-auth-client": "^2.5.5",
"solid-namespace": "^0.5.0",
"solid-ui": "^2.4.3",
"source-pane": "^2.2.8"
},
"devDependencies": {
"@babel/cli": "^7.12.13",
"@babel/core": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@babel/preset-typescript": "^7.12.13",
"@testing-library/dom": "^7.29.4",
"@testing-library/jest-dom": "^5.11.9",
"@types/jest": "^26.0.20",
"@types/webpack-env": "^1.16.0",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"babel-loader": "^8.2.2",
"babel-plugin-inline-import": "^3.0.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^7.19.0",
"fork-ts-checker-webpack-plugin": "^6.1.0",
"html-webpack-plugin": "^4.5.2",
"husky": "^4.3.8",
"jest": "^26.6.3",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^10.5.3",
"raw-loader": "^4.0.2",
"standard": "^16.0.3",
"ts-jest": "^26.5.0",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"src/**/*.(js|ts)": [
"eslint"
]
}
}