forked from SolidOS/solid-panes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.25 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": "solid-panes",
"version": "3.6.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-form": "(cd src/schedule/ && make)",
"build-lib": "npm run build-form && babel src -d lib --source-maps --extensions '.ts,.js'",
"build-dev": "webpack --progress --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 src/**/*test*",
"test-watch": "npm run lint && jest --onlyChanged --watch",
"prepublishOnly": "npm test && npm run build",
"postversion": "git push origin main --follow-tags",
"start": "npm install && npm run build-version && npx webpack serve --open"
},
"repository": {
"type": "git",
"url": "https://github.com/solidos/solid-panes"
},
"keywords": [
"solid",
"decentralized",
"widgets",
"ui",
"web",
"rdf",
"ldp",
"linked",
"panes",
"app",
"data"
],
"author": "Tim Berners-Lee <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/solidos/solid-panes/issues"
},
"homepage": "https://github.com/solidos/solid-panes",
"dependencies": {
"@solid/better-simple-slideshow": "^0.1.0",
"@types/jest": "^29.5.12",
"activitystreams-pane": "^0.6.13",
"chat-pane": "^2.4.26",
"contacts-pane": "^2.6.12",
"dompurify": "^3.0.11",
"folder-pane": "^2.4.27",
"issue-pane": "^2.4.19",
"marked": "^11.2.0",
"meeting-pane": "^2.4.19",
"mime-types": "^2.1.35",
"profile-pane": "^1.1.1",
"rdflib": "^2.2.34",
"solid-namespace": "^0.5.3",
"solid-ui": "^2.5.0",
"source-pane": "^2.2.27"
},
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@babel/preset-typescript": "^7.24.1",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.4.2",
"@types/webpack-env": "^1.18.4",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"babel-loader": "^9.1.3",
"babel-plugin-inline-import": "^3.0.0",
"buffer": "^6.0.3",
"eslint": "^8.57.0",
"html-webpack-plugin": "^5.6.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^15.2.2",
"node-polyfill-webpack-plugin": "^2.0.1",
"path-browserify": "^1.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.3",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"src/**/*.(js|ts)": [
"eslint"
]
}
}