-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.79 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.79 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
{
"name": "s-mwa",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"adm-zip": "^0.5.9",
"bcryptjs": "^2.4.3",
"busboy": "^1.4.0",
"connect-busboy": "^1.0.0",
"dotenv": "^10.0.0",
"esbuild": "^0.14.11",
"express": "^4.17.2",
"jsonwebtoken": "^8.5.1",
"node-os-utils": "^1.3.5",
"node-pty": "^1.0.0",
"socket.io": "^4.4.0",
"source-map-support": "^0.5.19",
"stream-split": "^1.1.0",
"xterm-addon-serialize": "^0.6.1",
"xterm-headless": "^4.16.0"
},
"devDependencies": {
"@types/adm-zip": "^0.4.34",
"@types/connect-busboy": "^1.0.0",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^14.14.22",
"@types/node-os-utils": "^1.2.0",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"concurrently": "^6.2.0",
"eslint": "^7.20.0",
"nodemon": "^2.0.12",
"ts-node-dev": "^1.1.1",
"typescript": "^5.4.5"
},
"scripts": {
"dev": "WAA_CONFIG_PATH=./config.json concurrently --raw --kill-others \"yarn watch\" \"yarn watch-run\"",
"watch": "tsc --watch --preserveWatchOutput --noEmitOnError",
"build": "tsc --preserveWatchOutput",
"watch-run": "DB_PATH=./db_test.local/db.json PORT=8081 nodemon --watch build --delay 1 -x \"node -r source-map-support/register --preserve-symlinks --inspect\" ./build/index.js",
"start": "node -r source-map-support/register --preserve-symlinks ./build/index.js",
"get-ucpem": "curl -L https://github.com/bt7s7k7/UCPeM/releases/latest/download/ucpem.js -o node_modules/.bin/ucpem",
"lint": "eslint ."
}
}