-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
88 lines (88 loc) · 2.7 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
{
"name": "participatory-system-mapper",
"version": "2.3.6",
"description": "Participatory System Mapper, browser app for collaboratively creating system maps",
"keywords": [
"social network",
"participatory",
"stakeholder",
"policy analysis"
],
"bugs": {
"email": "n.gilbert@surrey.ac.uk"
},
"author": "Nigel Gilbert",
"repository": {
"type": "git",
"url": "https://github.com/micrology/prsm"
},
"targets": {
"default": {
"engines": {
"browserslist": "fully supports es6"
},
"distDir": "dist",
"publicUrl": "."
}
},
"parcelIgnore": [
"/doc/help/"
],
"scripts": {
"lint": "./node_modules/.bin/eslint ./js/*.js --fix --quiet",
"pretty": "prettier --write ./html/*.html ./*.html ./js/*.js ./css/*.css doc/**/*.{html,css} package.json",
"build-help": "cd doc/help && npm run build",
"check": "npm run --silent lint && npm run --silent build-help && npm run --silent pretty",
"serve": "npx parcel serve './html/*.html' --port 4444 --open",
"websocket": "npx y-websocket",
"dev": "npm run clean && npx parcel build './html/*.html' --no-optimize --no-scope-hoist",
"build": "rm -rf dist/* && npx parcel build './html/*.html'",
"jsdoc": "npx jsdoc -r -c .jsdoc.json",
"clean": "rm -rf dist/*",
"rebuild-docker": "docker buildx build -f docker/docker-y-websocket/Dockerfile --platform linux/amd64,linux/arm64 -t micrology/prsm-y-websocket --push . && docker buildx build --platform linux/amd64,linux/arm64 -t micrology/prsm-httpd --push -f docker/docker-httpd/Dockerfile .",
"manual": "cd doc/help && npm run dev &",
"deploy": "npm run build && doc/help/deploy.rspress.bash && npm run build-help"
},
"license": "GPL-3.0-or-later",
"dependencies": {
"@egjs/hammerjs": "^2.0.17",
"@jaames/iro": "^5.5.2",
"3d-force-graph": "^1.73.3",
"bootstrap": "^5.3.3",
"fabric": "^5.3.0",
"fast-xml-parser": "^4.2.4",
"file-saver": "^2.0.5",
"luxon": "^3.2.1",
"lz-string": "^1.4.4",
"quill": "^2.0.0",
"quill-delta-to-html": "^0.12.1",
"quill-to-word": "^1.3.0",
"tabulator-tables": "^6.3.0",
"three": "^0.170.0",
"three-spritetext": "^1.8.0",
"uuid": "^8.3.2",
"vis-data": "^7.1.4",
"vis-network": "^9.1.4",
"vis-util": "^5.0.3",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.2/xlsx-0.20.2.tgz",
"y-websocket": "^2.0.4",
"yjs": "^13.5.47"
},
"devDependencies": {
"@parcel/optimizer-terser": "^2.9.3",
"docdash": "^2.0.2",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"jsdoc": "^4.0.2",
"microdiff": "^1.3.1",
"parcel": "latest",
"parcel-resolver-ignore": "^2.1.5",
"prettier": "^2.8.4",
"process": "^0.11.10",
"sharp": "^0.31.3"
},
"private": true,
"optionalDependencies": {
"@parcel/watcher-linux-x64-glibc": "^2.4.1"
}
}