-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.61 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
{
"name": "@board-bound/server",
"version": "IN-DEV",
"source": "src/index.ts",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"license": "NPOSL-3.0",
"scripts": {
"build": "parcel build",
"dev": "concurrently npm:dev:build npm:dev:run",
"dev:build": "parcel watch --no-hmr",
"dev:run": "sleep 5 && nodemon --delay 2 --watch dist --exec npm run dev:start",
"dev:start": "PLUGIN_WATCH=true PLUGIN_LOAD_DIRECT=\"../example/dist/index.cjs\" LOG_LEVEL=debug PORT=3000 node dist/index.cjs | pino-pretty",
"start": "node dist/index.cjs",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"prettier": "prettier --check src/**/*.ts",
"prettier:fix": "prettier --write src/**/*.ts"
},
"dependencies": {
"@board-bound/sdk": "^0.1.0",
"axios": "^1.7.7",
"chokidar": "^4.0.1",
"express": "^4.21.1",
"express-ws": "^5.0.2",
"pino": "^9.5.0",
"semver": "^7.6.3",
"uuid": "^10.0.0"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@parcel/packager-ts": "2.12.0",
"@parcel/transformer-typescript-types": "2.12.0",
"@types/express": "^5.0.0",
"@types/express-ws": "^3.0.5",
"@types/node": "^22.7.7",
"@types/semver": "^7.5.8",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.5.12",
"concurrently": "^9.0.1",
"eslint": "^9.13.0",
"globals": "^15.11.0",
"nodemon": "^3.1.7",
"parcel": "^2.12.0",
"pino": "^9.5.0",
"pino-pretty": "^11.3.0",
"prettier": "^3.3.3",
"typescript": ">=3.0.0",
"typescript-eslint": "^8.10.0"
},
"engines": {
"node": ">=12"
},
"targets": {
"main": {
"includeNodeModules": true,
"optimize": true
}
}
}