forked from excalidraw/excalidraw-room
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.26 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
{
"dependencies": {
"@excalidraw/eslint-config": "1.0.3",
"@excalidraw/prettier-config": "1.0.2",
"@sentry/node": "^7.119.0",
"@types/debug": "4.1.12",
"@types/express": "4.17.21",
"@types/node": "14.18.63",
"cross-env": "^7.0.3",
"debug": "4.3.6",
"dotenv": "^10.0.0",
"eslint": "9.9.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"express": "4.21.0",
"prettier": "3.3.3",
"socket.io": "4.7.5",
"ts-node-dev": "^1.1.8",
"typescript": "4.9.5",
"typescript-eslint": "^8.10.0"
},
"license": "MIT",
"main": "dist/index.js",
"name": "excalidraw-portal",
"prettier": "@excalidraw/prettier-config",
"scripts": {
"build": "tsc",
"fix:code": "yarn test:code --fix",
"fix:other": "yarn prettier --write",
"fix": "yarn fix:other && yarn fix:code",
"prettier": "prettier . --ignore-path=.gitignore",
"start": "node dist/index.js",
"start:dev": "cross-env NODE_ENV=development ts-node-dev --respawn --transpile-only src/index.ts",
"test:code": "eslint .",
"test:other": "yarn prettier --list-different",
"test": "yarn test:other && yarn test:code"
},
"resolutions": {
"ws": "8.17.1",
"micromatch": "4.0.8"
},
"version": "1.0.0"
}