-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 820 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 820 Bytes
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
{
"version": "1.0.1",
"dependencies": {
"dotenv": "^17.2.3",
"socket.io": "^4.8.1",
"winston": "^3.18.3"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@types/node": "24.10.1",
"conventional-changelog-conventionalcommits": "^9.1.0",
"semantic-release": "^25.0.2",
"ts-node-dev": "^2.0.0",
"typescript": "5.9.3"
},
"license": "MIT",
"main": "dist/index.js",
"name": "excalidraw-collab-server",
"prettier": "@excalidraw/prettier-config",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"start:dev": "NODE_ENV=development ts-node-dev --respawn --transpile-only src/index.ts",
"bump:patch": "yarn version --patch --no-git-tag-version"
}
}