-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 2.01 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
{
"name": "workflow",
"version": "0.0.1",
"description": "a collaborative real-time white- and kanban board",
"author": "Mark-André Hopf <[email protected]>",
"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:idl && npm run build:server && npm run build:client",
"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: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": "^5.1.1",
"knex": "^3.1.0",
"sqlite3": "^5.1.7",
"websocket": "^1.0.35"
},
"devDependencies": {
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@types/bcrypt": "^5.0.2",
"@types/chai": "^5.0.1",
"@types/chai-almost": "^1.0.3",
"@types/chai-as-promised": "^8.0.1",
"@types/chai-subset": "^1.3.5",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.2",
"@types/sqlite3": "^3.1.11",
"@types/websocket": "^1.0.10",
"@web/dev-server": "^0.4.6",
"@web/test-runner": "^0.19.0",
"bind-decorator": "^1.0.11",
"chai": "^5.1.2",
"chai-almost": "^1.0.1",
"chai-as-promised": "^8.0.1",
"chai-subset": "^1.6.0",
"corba.js": "0.1.7",
"mocha": "^11.0.1",
"rollup": "^4.29.1",
"rollup-plugin-typescript2": "^0.36.0",
"toad.js": "^0.2.0",
"toad.jsx": "^0.0.12",
"ts-node": "^10.9.2",
"ts-patch": "^3.3.0",
"typescript": "^5.7.2"
}
}