-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.04 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.04 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
{
"name": "workflow",
"version": "0.0.1",
"description": "a collaborative real-time white- and kanban board",
"author": "Mark-André Hopf <mhopf@mark13.org>",
"license": "AGPL-3.0-or-later",
"engines": {
"npm": ">=8.1.2",
"node": ">=16.10.0"
},
"main": "index.html",
"repository": {
"type": "git",
"url": "git+https://github.com/markandre13/workflow.git"
},
"scripts": {
"build": "npm run build:transformer && npm run build:idl && npm run build:server && npm run build:client",
"build:transformer": "tsc -types node m13-es-transformer.ts",
"build:idl": "corba-idl -v --ts-all src/shared/workflow.idl",
"build:client": "rollup --config rollup-client.config.js",
"build:server": "rollup --config rollup-server.config.js",
"dev:build": "npm run build:transformer && npm run build:idl && tspc -w -p tsconfig-dev.json",
"dev:test": "if test -z \"$npm_config_file\" ; then wtr --watch build/test/unit ; else wtr --watch $npm_config_file; fi",
"dev:serve": "wds --node-resolve --watch --open --app-index index-dev.html",
"update": "npx npm-check-updates -u && npm install"
},
"dependencies": {
"bcrypt": "^6.0.0",
"knex": "^3.2.9",
"sqlite3": "^6.0.1",
"websocket": "^1.0.35"
},
"devDependencies": {
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@types/bcrypt": "^6.0.0",
"@types/chai": "^5.2.3",
"@types/chai-almost": "^1.0.3",
"@types/chai-string": "^1.4.5",
"@types/mocha": "^10.0.10",
"@types/node": "^25.6.0",
"@types/sqlite3": "^5.1.0",
"@types/websocket": "^1.0.10",
"@web/dev-server": "^0.4.6",
"@web/test-runner": "^0.20.2",
"bind-decorator": "^1.0.11",
"chai": "^6.2.2",
"chai-almost": "^1.0.1",
"chai-as-promised": "^8.0.2",
"corba.js": "0.2.0",
"mocha": "^11.7.5",
"rollup": "^4.60.1",
"rollup-plugin-typescript2": "^0.37.0",
"toad.js": "^0.3.1",
"toad.jsx": "^0.0.13",
"ts-patch": "^3.3.0",
"typescript": "^5.9.3"
}
}